<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://help.grandcare.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tmosey</id>
	<title>GrandCare Systems - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://help.grandcare.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Tmosey"/>
	<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php/Special:Contributions/Tmosey"/>
	<updated>2026-04-07T21:44:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_History_API_Subsystem&amp;diff=3080</id>
		<title>Internal History API Subsystem</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_History_API_Subsystem&amp;diff=3080"/>
		<updated>2013-02-25T16:55:55Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The History subsystem allows you to fetch ADL and wellness data from a system via [[GCAPI]].&lt;br /&gt;
All of the operations take the same parameters and return different data.&lt;br /&gt;
= Operations =&lt;br /&gt;
== bp ==&lt;br /&gt;
Fetches blood pressure sensor history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
* ''resident'' - [optional] - ID of resident to limit data to&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;bp&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/12/12 09:35:44&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1001&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;systolic&amp;gt;138&amp;lt;/systolic&amp;gt;&lt;br /&gt;
 		&amp;lt;diastolic&amp;gt;88&amp;lt;/diastolic&amp;gt;&lt;br /&gt;
 		&amp;lt;pulse&amp;gt;49&amp;lt;/pulse&amp;gt;&lt;br /&gt;
 		&amp;lt;mean-ap&amp;gt;108&amp;lt;/mean-ap&amp;gt;&lt;br /&gt;
 	&amp;lt;/bp&amp;gt;&lt;br /&gt;
 	&amp;lt;bp&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/11/12 07:11:08&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1001&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;systolic&amp;gt;128&amp;lt;/systolic&amp;gt;&lt;br /&gt;
 		&amp;lt;diastolic&amp;gt;84&amp;lt;/diastolic&amp;gt;&lt;br /&gt;
 		&amp;lt;pulse&amp;gt;58&amp;lt;/pulse&amp;gt;&lt;br /&gt;
 		&amp;lt;mean-ap&amp;gt;98&amp;lt;/mean-ap&amp;gt;&lt;br /&gt;
 	&amp;lt;/bp&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;2&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;bp&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/31/12 08:15:57&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1001&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;quot;,&lt;br /&gt;
                &amp;quot;systolic&amp;quot;: &amp;quot;134&amp;quot;,&lt;br /&gt;
                &amp;quot;diastolic&amp;quot;: &amp;quot;95&amp;quot;,&lt;br /&gt;
                &amp;quot;pulse&amp;quot;: &amp;quot;54&amp;quot;,&lt;br /&gt;
                &amp;quot;mean-ap&amp;quot;: &amp;quot;117&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/28/12 07:51:16&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1001&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;quot;,&lt;br /&gt;
                &amp;quot;systolic&amp;quot;: &amp;quot;134&amp;quot;,&lt;br /&gt;
                &amp;quot;diastolic&amp;quot;: &amp;quot;89&amp;quot;,&lt;br /&gt;
                &amp;quot;pulse&amp;quot;: &amp;quot;51&amp;quot;,&lt;br /&gt;
                &amp;quot;mean-ap&amp;quot;: &amp;quot;104&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== weight ==&lt;br /&gt;
Fetches scale history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
* ''resident'' - [optional] - ID of resident to limit data to&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;weight&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/16/12 07:30:26&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1000&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;179.6&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/weight&amp;gt;&lt;br /&gt;
 	&amp;lt;weight&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/15/12 08:00:52&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1000&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;179.8&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/weight&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;1354&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;weight&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/31/12 08:14:45&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1000&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;176.6&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/28/12 07:49:32&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1000&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;cf6ff892-3124-41ef-8c77-e729f0f66fc5&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;176.2&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== temp ==&lt;br /&gt;
Fetches temperature sensor history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;temp&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;09/14/10 02:50:29&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1070&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;70&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/temp&amp;gt;&lt;br /&gt;
 	&amp;lt;temp&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;09/14/10 01:37:27&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1070&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;71&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/temp&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;2&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;temp&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/20/12 12:06:18&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;103&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;73&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/20/12 11:53:14&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;103&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;74&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== bed ==&lt;br /&gt;
Fetches bed sensor history from the system&lt;br /&gt;
&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;1&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 	&amp;lt;bed&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;...&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;device-id&amp;gt;...&amp;lt;/device-id&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;[Occupied|Unoccupied]&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/bed&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;bed&amp;quot;: [{&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;...&amp;quot;,&lt;br /&gt;
                &amp;quot;device-id&amp;quot;: &amp;quot;...&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;[Occupied|Unoccupied]&amp;quot;&lt;br /&gt;
        }],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;1&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== oxi ==&lt;br /&gt;
Fetches oximeter history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
* ''resident'' - [optional] - ID of resident to limit data to&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;oxi&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/06/12 16:55:57&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1003&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;spo2&amp;gt;97&amp;lt;/spo2&amp;gt;&lt;br /&gt;
 		&amp;lt;pulse&amp;gt;72&amp;lt;/pulse&amp;gt;&lt;br /&gt;
 	&amp;lt;/oxi&amp;gt;&lt;br /&gt;
 	&amp;lt;oxi&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;05/05/12 22:34:57&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1003&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;spo2&amp;gt;99&amp;lt;/spo2&amp;gt;&lt;br /&gt;
 		&amp;lt;pulse&amp;gt;83&amp;lt;/pulse&amp;gt;&lt;br /&gt;
 	&amp;lt;/oxi&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;2&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;oxi&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;08/01/12 08:11:59&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1003&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;quot;,&lt;br /&gt;
                &amp;quot;spo2&amp;quot;: &amp;quot;96&amp;quot;,&lt;br /&gt;
                &amp;quot;pulse&amp;quot;: &amp;quot;63&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/31/12 10:19:25&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1003&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;quot;,&lt;br /&gt;
                &amp;quot;spo2&amp;quot;: &amp;quot;95&amp;quot;,&lt;br /&gt;
                &amp;quot;pulse&amp;quot;: &amp;quot;63&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== motion ==&lt;br /&gt;
Fetches motion sensor history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;motion&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/20/12 14:07:36&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;105&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;Off&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/motion&amp;gt;&lt;br /&gt;
 	&amp;lt;motion&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/20/12 14:05:48&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;102&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;Off&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/motion&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;55&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;motion&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/20/12 14:07:36&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;105&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;Off&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/20/12 14:05:48&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;102&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;Off&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== gluc ==&lt;br /&gt;
Fetches glucometer history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
* ''resident'' - [optional] - ID of resident to limit data to&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;gluc&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;08/01/12 07:24:00&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1002&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;113&amp;lt;/value&amp;gt;&lt;br /&gt;
 		&amp;lt;notes&amp;gt;&amp;lt;/notes&amp;gt;&lt;br /&gt;
 	&amp;lt;/gluc&amp;gt;&lt;br /&gt;
 	&amp;lt;gluc&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/31/12 08:17:00&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1002&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;residentId&amp;gt;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;lt;/residentId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;105&amp;lt;/value&amp;gt;&lt;br /&gt;
 		&amp;lt;notes&amp;gt;&amp;lt;/notes&amp;gt;&lt;br /&gt;
 	&amp;lt;/gluc&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;2&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;gluc&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;08/01/12 07:24:00&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1002&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;113&amp;quot;,&lt;br /&gt;
                &amp;quot;notes&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/31/12 08:17:00&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1002&amp;quot;,&lt;br /&gt;
                &amp;quot;residentId&amp;quot;: &amp;quot;b61790c5-0f61-40a7-864b-87b8c62cc750&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;105&amp;quot;,&lt;br /&gt;
                &amp;quot;notes&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== door ==&lt;br /&gt;
Fetches door sensor history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;door&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;08/01/12 07:24:00&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1002&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;Open&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/door&amp;gt;&lt;br /&gt;
 	&amp;lt;door&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/31/12 08:17:00&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;deviceId&amp;gt;1002&amp;lt;/deviceId&amp;gt;&lt;br /&gt;
 		&amp;lt;value&amp;gt;Closed&amp;lt;/value&amp;gt;&lt;br /&gt;
 	&amp;lt;/door&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;2&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;door&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;08/01/12 07:24:00&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1002&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;Open&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/31/12 08:17:00&amp;quot;,&lt;br /&gt;
                &amp;quot;deviceId&amp;quot;: &amp;quot;1002&amp;quot;,&lt;br /&gt;
                &amp;quot;value&amp;quot;: &amp;quot;Closed&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
== cid ==&lt;br /&gt;
Fetches caller ID history from the system&lt;br /&gt;
=== Parameters ===&lt;br /&gt;
* ''limit'' - [optional] - Limits the number of entries returned. Defaults to 50&lt;br /&gt;
* ''offset'' - [optional] - Skip this number of entries. Useful for paging&lt;br /&gt;
* ''date'' - [optional] - Returns only entries for this date&lt;br /&gt;
* ''days'' - [optional] - Returns entries for the last number of days&lt;br /&gt;
* ''devices'' - [optional] - Comma separated list of devices to get data. Can be a single device&lt;br /&gt;
=== Results ===&lt;br /&gt;
SUCCESS, the total number of readings, and a list readings.&lt;br /&gt;
==== xml ====&lt;br /&gt;
 &amp;lt;gcapi&amp;gt;&lt;br /&gt;
 	&amp;lt;result&amp;gt;SUCCESS&amp;lt;/result&amp;gt;&lt;br /&gt;
 	&amp;lt;call&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/28/09 16:40:48&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;name&amp;gt;U.S. CELLULAR&amp;lt;/name&amp;gt;&lt;br /&gt;
 		&amp;lt;number&amp;gt;2625551001&amp;lt;/number&amp;gt;&lt;br /&gt;
 	&amp;lt;/call&amp;gt;&lt;br /&gt;
 	&amp;lt;call&amp;gt;&lt;br /&gt;
 		&amp;lt;timestamp&amp;gt;07/28/09 15:30:00&amp;lt;/timestamp&amp;gt;&lt;br /&gt;
 		&amp;lt;name&amp;gt;P&amp;lt;/name&amp;gt;&lt;br /&gt;
 		&amp;lt;number&amp;gt;P&amp;lt;/number&amp;gt;&lt;br /&gt;
 	&amp;lt;/call&amp;gt;&lt;br /&gt;
 	&amp;lt;totalEntries&amp;gt;6&amp;lt;/totalEntries&amp;gt;&lt;br /&gt;
 &amp;lt;/gcapi&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== json ====&lt;br /&gt;
 {&lt;br /&gt;
    &amp;quot;gcapi&amp;quot;: {&lt;br /&gt;
        &amp;quot;result&amp;quot;: &amp;quot;SUCCESS&amp;quot;,&lt;br /&gt;
        &amp;quot;call&amp;quot;: [&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/28/09 16:40:48&amp;quot;,&lt;br /&gt;
                &amp;quot;name&amp;quot;: &amp;quot;U.S. CELLULAR&amp;quot;,&lt;br /&gt;
                &amp;quot;number&amp;quot;: &amp;quot;2625551001&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            {&lt;br /&gt;
                &amp;quot;timestamp&amp;quot;: &amp;quot;07/28/09 15:30:00&amp;quot;,&lt;br /&gt;
                &amp;quot;name&amp;quot;: &amp;quot;Unknown Caller&amp;quot;,&lt;br /&gt;
                &amp;quot;number&amp;quot;: &amp;quot;&amp;quot;&lt;br /&gt;
            }&lt;br /&gt;
        ],&lt;br /&gt;
        &amp;quot;totalEntries&amp;quot;: &amp;quot;2&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
 }&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=User:Kristin&amp;diff=3076</id>
		<title>User:Kristin</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=User:Kristin&amp;diff=3076"/>
		<updated>2013-02-22T16:28:50Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Created page with &amp;quot;Kristin joined the GrandCare team in January of 2011 as a compliance officer and quality assurance specialist. She is responsible for compliance in the areas of HIPAA and FDA....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kristin joined the GrandCare team in January of 2011 as a compliance officer and quality assurance specialist. She is responsible for compliance in the areas of HIPAA and FDA. Kristin has a BA and a Master’s degree from the University of Wisconsin-Madison. She serves on the advisory board for the UW-Oshkosh Computer Science Department and The University Council for UW-Washington County, and does web design work for several non-profit organizations. She is married, and has a daughter.&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3061</id>
		<title>Internal Installing Apache SSL Certs</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3061"/>
		<updated>2013-01-04T21:13:20Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Load StartSSL trusted login cert into browser (Located on Password Gorilla)&lt;br /&gt;
*Login and choose the certificate wizard (verify domain if required)&lt;br /&gt;
*Skip automatic cert generation in the wizard&lt;br /&gt;
*SSH into the server and run in ''/etc/ssl''&lt;br /&gt;
&lt;br /&gt;
 wget https://www.startssl.com/certs/ca.pem&lt;br /&gt;
 wget https://www.startssl.com/certs/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
*Generate the request	&lt;br /&gt;
&lt;br /&gt;
 openssl req -new -newkey rsa:2048 -nodes -keyout fqdn.key -out fqdn.csr&lt;br /&gt;
&lt;br /&gt;
*Set the server domain name for CN&lt;br /&gt;
*Copy server.csr into StartSSL's Cert Wizard&lt;br /&gt;
*Wait for verification (check support mailing list)&lt;br /&gt;
*Follow the instructions in the email and create ''fqdn.crt''&lt;br /&gt;
*Rename the ''fqdn.key'' and ''fqdn.crt'' to the common name&lt;br /&gt;
*Modify /etc/ssl/apache.conf to read like this&lt;br /&gt;
&lt;br /&gt;
 SSLEngine On&lt;br /&gt;
 SSLProtocol all -SSLv2&lt;br /&gt;
 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM&lt;br /&gt;
 SSLCertificateChainFile /etc/ssl/sub.class1.server.ca.pem&lt;br /&gt;
 SSLCACertificateFile /etc/ssl/ca.pem&lt;br /&gt;
 SSLCertificateFile /etc/ssl/certs/fqdn.crt&lt;br /&gt;
 SSLCertificateKeyFile /etc/ssl/private/fqdn.key&lt;br /&gt;
 SetEnvIf User-Agent &amp;quot;.*MSIE.*&amp;quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
&lt;br /&gt;
*Restart the apache server daemon&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/apache2 restart&lt;br /&gt;
&lt;br /&gt;
==== Notes ====&lt;br /&gt;
Copy the private key to Password Gorilla&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3058</id>
		<title>Internal Installing Apache SSL Certs</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3058"/>
		<updated>2013-01-04T20:27:11Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Load StartSSL trusted login cert into browser (Located on Password Gorilla)&lt;br /&gt;
*Login and choose the certificate wizard (verify domain if required)&lt;br /&gt;
*Skip automatic cert generation in the wizard&lt;br /&gt;
*SSH into the server and run in ''/etc/ssl''&lt;br /&gt;
&lt;br /&gt;
 wget https://www.startssl.com/certs/ca.pem&lt;br /&gt;
 wget https://www.startssl.com/certs/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
*Generate the request	&lt;br /&gt;
&lt;br /&gt;
 openssl req -new -newkey rsa:2048 -nodes -keyout fqdn.key -out fqdn.csr&lt;br /&gt;
&lt;br /&gt;
*Set the server domain name for CN&lt;br /&gt;
*Copy server.csr into StartSSL's Cert Wizard&lt;br /&gt;
*Wait for verification (check support mailing list)&lt;br /&gt;
*Follow the instructions in the email and create ''fqdn.crt''&lt;br /&gt;
*Rename the ''fqdn.key'' and ''fqdn.crt'' to the common name&lt;br /&gt;
*Modify /etc/ssl/apache.conf to read like this&lt;br /&gt;
&lt;br /&gt;
 SSLEngine On&lt;br /&gt;
 SSLProtocol all -SSLv2&lt;br /&gt;
 SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM&lt;br /&gt;
 SSLCertificateChainFile /etc/ssl/sub.class1.server.ca.pem&lt;br /&gt;
 SSLCACertificateFile /etc/ssl/ca.pem&lt;br /&gt;
 SSLCertificateFile /etc/ssl/certs/&amp;lt;common name&amp;gt;.crt&lt;br /&gt;
 SSLCertificateKeyFile /etc/ssl/private/&amp;lt;common name&amp;gt;.key&lt;br /&gt;
 SetEnvIf User-Agent &amp;quot;.*MSIE.*&amp;quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
&lt;br /&gt;
*Restart the apache server daemon&lt;br /&gt;
&lt;br /&gt;
 /etc/init.d/apache2 restart&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_GC_Documentation&amp;diff=3055</id>
		<title>Internal GC Documentation</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_GC_Documentation&amp;diff=3055"/>
		<updated>2013-01-04T20:24:38Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Added SSL cert article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Creating a Bootable GCLinux Loading Stick]]&lt;br /&gt;
* [[GC Recovery]]&lt;br /&gt;
* [[Building GCLinux Packages]]&lt;br /&gt;
* [[Linux Event Snooping]]&lt;br /&gt;
* [[GCAPI|Como API]]&lt;br /&gt;
* [[GCManage API|GCManage API]]&lt;br /&gt;
* [[Ndc|National Drug Code Documentation]]&lt;br /&gt;
* [[Sandbox]]&lt;br /&gt;
* [[My.GrandCare|My.GrandCare]]&lt;br /&gt;
* [[Installing Apache SSL Certs]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=User:Tmosey/StartSSL&amp;diff=3054</id>
		<title>User:Tmosey/StartSSL</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=User:Tmosey/StartSSL&amp;diff=3054"/>
		<updated>2013-01-04T20:23:49Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: moved User:Tmosey/StartSSL to Installing Apache SSL Certs: Publishing article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Installing Apache SSL Certs]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3053</id>
		<title>Internal Installing Apache SSL Certs</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3053"/>
		<updated>2013-01-04T20:23:49Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: moved User:Tmosey/StartSSL to Installing Apache SSL Certs: Publishing article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Load StartSSL trusted login cert into browser (Located on Password Gorilla)&lt;br /&gt;
&lt;br /&gt;
*Login and choose the certificate wizard (verify domain if required)&lt;br /&gt;
&lt;br /&gt;
*Skip automatic cert generation in the wizard&lt;br /&gt;
&lt;br /&gt;
*SSH into the server and run in ''/etc/ssl''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
wget https://www.startssl.com/certs/ca.pem&lt;br /&gt;
&lt;br /&gt;
wget https://www.startssl.com/certs/sub.class1.server.ca.pem\&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Generate the request	&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;openssl req -new -newkey rsa:2048 -nodes -keyout fqdn.key -out fqdn.csr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Set the server domain name for CN&lt;br /&gt;
&lt;br /&gt;
*Copy server.csr into StartSSL's Cert Wizard&lt;br /&gt;
&lt;br /&gt;
*Wait for verification (check support mailing list)&lt;br /&gt;
&lt;br /&gt;
*Follow the instructions in the email and create ''fqdn.crt''&lt;br /&gt;
&lt;br /&gt;
*Rename the ''fqdn.key'' and ''fqdn.crt'' to the common name&lt;br /&gt;
&lt;br /&gt;
*Modify /etc/ssl/apache.conf to read like this&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
SSLEngine On&lt;br /&gt;
&lt;br /&gt;
SSLProtocol all -SSLv2&lt;br /&gt;
&lt;br /&gt;
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM&lt;br /&gt;
&lt;br /&gt;
SSLCertificateChainFile /etc/ssl/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCACertificateFile /etc/ssl/ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCertificateFile /etc/ssl/certs/&amp;lt;common name&amp;gt;.crt&lt;br /&gt;
&lt;br /&gt;
SSLCertificateKeyFile /etc/ssl/private/&amp;lt;common name&amp;gt;.key&lt;br /&gt;
&lt;br /&gt;
SetEnvIf User-Agent &amp;quot;.*MSIE.*&amp;quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Restart the apache server daemon&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/etc/init.d/apache2 restart&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3052</id>
		<title>Internal Installing Apache SSL Certs</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3052"/>
		<updated>2013-01-04T20:22:23Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Load StartSSL trusted login cert into browser (Located on Password Gorilla)&lt;br /&gt;
&lt;br /&gt;
*Login and choose the certificate wizard (verify domain if required)&lt;br /&gt;
&lt;br /&gt;
*Skip automatic cert generation in the wizard&lt;br /&gt;
&lt;br /&gt;
*SSH into the server and run in ''/etc/ssl''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
wget https://www.startssl.com/certs/ca.pem&lt;br /&gt;
&lt;br /&gt;
wget https://www.startssl.com/certs/sub.class1.server.ca.pem\&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Generate the request	&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;openssl req -new -newkey rsa:2048 -nodes -keyout fqdn.key -out fqdn.csr&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Set the server domain name for CN&lt;br /&gt;
&lt;br /&gt;
*Copy server.csr into StartSSL's Cert Wizard&lt;br /&gt;
&lt;br /&gt;
*Wait for verification (check support mailing list)&lt;br /&gt;
&lt;br /&gt;
*Follow the instructions in the email and create ''fqdn.crt''&lt;br /&gt;
&lt;br /&gt;
*Rename the ''fqdn.key'' and ''fqdn.crt'' to the common name&lt;br /&gt;
&lt;br /&gt;
*Modify /etc/ssl/apache.conf to read like this&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
SSLEngine On&lt;br /&gt;
&lt;br /&gt;
SSLProtocol all -SSLv2&lt;br /&gt;
&lt;br /&gt;
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM&lt;br /&gt;
&lt;br /&gt;
SSLCertificateChainFile /etc/ssl/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCACertificateFile /etc/ssl/ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCertificateFile /etc/ssl/certs/&amp;lt;common name&amp;gt;.crt&lt;br /&gt;
&lt;br /&gt;
SSLCertificateKeyFile /etc/ssl/private/&amp;lt;common name&amp;gt;.key&lt;br /&gt;
&lt;br /&gt;
SetEnvIf User-Agent &amp;quot;.*MSIE.*&amp;quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Restart the apache server daemon&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;/etc/init.d/apache2 restart&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3044</id>
		<title>Internal Installing Apache SSL Certs</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Internal_Installing_Apache_SSL_Certs&amp;diff=3044"/>
		<updated>2013-01-04T20:09:30Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Dumping instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*Load StartSSL trusted login cert into browser&lt;br /&gt;
&lt;br /&gt;
*Login and choose the certificate wizard (verify domain if required)&lt;br /&gt;
&lt;br /&gt;
*Skip automatic cert generation in the wizard&lt;br /&gt;
&lt;br /&gt;
*SSH into the server and run in /etc/ssl&lt;br /&gt;
&lt;br /&gt;
wget https://www.startssl.com/certs/ca.pem&lt;br /&gt;
&lt;br /&gt;
wget https://www.startssl.com/certs/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr&lt;br /&gt;
&lt;br /&gt;
*Set the server domain name for CN&lt;br /&gt;
&lt;br /&gt;
*Copy server.csr into StartSSL's Cert Wizard&lt;br /&gt;
&lt;br /&gt;
*Wait for verification&lt;br /&gt;
&lt;br /&gt;
*Follow the instructions in the email and create server.crt&lt;br /&gt;
&lt;br /&gt;
*Rename the server.key and server.crt to the common name&lt;br /&gt;
&lt;br /&gt;
*Modify /etc/ssl/apache.conf to read like this&lt;br /&gt;
&lt;br /&gt;
SSLEngine On&lt;br /&gt;
&lt;br /&gt;
SSLProtocol all -SSLv2&lt;br /&gt;
&lt;br /&gt;
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM&lt;br /&gt;
&lt;br /&gt;
SSLCertificateChainFile	/etc/ssl/sub.class1.server.ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCACertificateFile	/etc/ssl/ca.pem&lt;br /&gt;
&lt;br /&gt;
SSLCertificateFile	/etc/ssl/certs/&amp;lt;common name&amp;gt;.crt&lt;br /&gt;
&lt;br /&gt;
SSLCertificateKeyFile	/etc/ssl/private/&amp;lt;common name&amp;gt;.key&lt;br /&gt;
&lt;br /&gt;
SetEnvIf User-Agent &amp;quot;.*MSIE.*&amp;quot; nokeepalive ssl-unclean-shutdown&lt;br /&gt;
&lt;br /&gt;
*Restart the apache server daemon&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3024</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3024"/>
		<updated>2012-12-06T23:20:18Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Skype on Android Devices==&lt;br /&gt;
Skype released version 2.9.x on the Android Play Store breaking video compatibility with Skype on the GrandCare system.  A fix has been found but requires downgrading to Skype 2.8.x on Android.&lt;br /&gt;
&lt;br /&gt;
This article explains how to prevent the Skype app from auto-updating to the later, incompatible, 2.9.x versions and above.&lt;br /&gt;
&lt;br /&gt;
The version we found that works best is ''Skype 2.8.0.920''.&lt;br /&gt;
&lt;br /&gt;
==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button '''⋮''' in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep the &amp;quot;Auto-update apps&amp;quot; box checked to keep all of your other apps updating automatically&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Battery_Tips_for_Sensors&amp;diff=3023</id>
		<title>Battery Tips for Sensors</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Battery_Tips_for_Sensors&amp;diff=3023"/>
		<updated>2012-12-06T23:19:03Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h3 style=&amp;quot;display: inline-block; background:#ffffff; font-weight:bold; border-bottom:2px solid #6093cc; text-align:left; color:#000; padding:0.2em 0.4em;&amp;quot;&amp;gt;&amp;lt;br /&amp;gt;Overview&amp;lt;/h3&amp;gt;&lt;br /&gt;
Your sensors require batteries to operate. You can check current battery levels using the [[Battery Report|Battery Report]]. You should find changing batteries to be fairly straight-forward, but here are a few tips to help you.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Z-Wave.png|right|frame|Z-Wave Motion and Temperature Sensor (HSM100)]]&lt;br /&gt;
&amp;lt;h3 style=&amp;quot;display: inline-block; background:#ffffff; font-weight:bold; border-bottom:2px solid #6093cc; text-align:left; color:#000; padding:0.2em 0.4em;&amp;quot;&amp;gt;Z-Wave Motion Sensors&amp;lt;/h3&amp;gt;&lt;br /&gt;
* The Z-Wave Motion and Temperature Sensor (Model HSM100) takes 3 AAA batteries. (We recommend long-lasting lithium batteries.) You can pull off the back of the sensor after lifting the little plastic tab located near the light. When you have finished replacing the batteries, press the little blue button on the side of the sensor.&amp;lt;br /&amp;gt;&amp;lt;br &amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3 style=&amp;quot;display: inline-block; background:#ffffff; font-weight:bold; border-bottom:2px solid #6093cc; text-align:left; color:#000; padding:0.2em 0.4em;&amp;quot;&amp;gt;Inovonics Sensors&amp;lt;/h3&amp;gt;&lt;br /&gt;
The High-Traffic Inovonics motion sensor has a replaceable battery, but there is a small cable that must also be unplugged and plugged, which may be surprising. This video shows you have the battery can be removed, and how a battery can be added. A source for batteries is: http://www.inovonics.com/batteries.aspx.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;mediaplayer&amp;gt;File:InovonicsBatteryChange.mp4&amp;lt;/mediaplayer&amp;gt;&lt;br /&gt;
(May take a few moments to load before starting)&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following is a list of supported Inovonics sensors, and the model number for their batteries:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1223S&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Single-Button Water-Resistant Pendant Transmitter&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;CR2450&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1210&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Single-Input Universal Transmitter&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;123A&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1265&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;360° Ceiling-Mount Motion Detector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2 x 123A&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1261HT&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;High-Traffic Four-Element Motion Detector&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;BR-AG&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1262&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Motion Detector with Pet Immunity&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;123A&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1723&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Dual-Input Temperature Transmitter&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;123A&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;EN1210W&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Door/Window Transmitter with Reed Switch&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;123A&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3001</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3001"/>
		<updated>2012-12-06T02:53:40Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button '''⋮''' in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating automatically&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3000</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=3000"/>
		<updated>2012-12-06T02:51:04Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button '''⋮''' in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating automatically&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2999</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2999"/>
		<updated>2012-12-06T02:50:32Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button ('''⋮''') in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating automatically&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2998</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2998"/>
		<updated>2012-12-06T02:49:35Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button ('''⋮''') in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating automatically&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
Alternatively you can update your other apps one by one&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2997</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2997"/>
		<updated>2012-12-06T02:49:13Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button ('''⋮''') in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
Alternatively you can update your other apps one by one&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2996</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2996"/>
		<updated>2012-12-06T02:48:21Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button (⋮) in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
Alternatively you can update your other apps one by one&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2995</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2995"/>
		<updated>2012-12-06T02:46:38Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
Alternatively you can update your other apps one by one&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2994</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2994"/>
		<updated>2012-12-06T02:45:40Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: /* Preventing auto-updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype Play Store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Skypemarketchecked.png&amp;diff=2993</id>
		<title>File:Skypemarketchecked.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Skypemarketchecked.png&amp;diff=2993"/>
		<updated>2012-12-05T23:00:39Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Skypemarketchecked.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Skypemarketunchecked.png&amp;diff=2992</id>
		<title>File:Skypemarketunchecked.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Skypemarketunchecked.png&amp;diff=2992"/>
		<updated>2012-12-05T23:00:13Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Skypemarketunchecked.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Playstoresettings.png&amp;diff=2991</id>
		<title>File:Playstoresettings.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Playstoresettings.png&amp;diff=2991"/>
		<updated>2012-12-05T22:59:49Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Playstoresettings.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2990</id>
		<title>File:Security.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2990"/>
		<updated>2012-12-05T22:59:19Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Security.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Overflowplaystore.png&amp;diff=2989</id>
		<title>File:Overflowplaystore.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Overflowplaystore.png&amp;diff=2989"/>
		<updated>2012-12-05T22:58:32Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Overflowplaystore.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2988</id>
		<title>File:Security.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2988"/>
		<updated>2012-12-05T22:58:12Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Security.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Updateall.png&amp;diff=2987</id>
		<title>File:Updateall.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Updateall.png&amp;diff=2987"/>
		<updated>2012-12-05T22:57:31Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Updateall.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2986</id>
		<title>File:Playcancel.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2986"/>
		<updated>2012-12-05T22:57:04Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Playcancel.png&amp;amp;quot;: Reverted to version as of 22:56, 5 December 2012&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2985</id>
		<title>File:Playcancel.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2985"/>
		<updated>2012-12-05T22:56:43Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Playcancel.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2984</id>
		<title>File:Playcancel.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2984"/>
		<updated>2012-12-05T22:56:04Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: uploaded a new version of &amp;amp;quot;File:Playcancel.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2983</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2983"/>
		<updated>2012-12-05T22:29:47Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update.&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2982</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2982"/>
		<updated>2012-12-05T22:27:48Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2981</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2981"/>
		<updated>2012-12-05T22:26:44Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypesideload.png|250px]][[File:Skypemarketchecked.png|250px]][[File:Skypemarketunchecked.png|250px]][[File:Overflowplaystore.png|250px]][[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
If you need to update several apps at once manually in the Play Store you must cancel the Skype update&lt;br /&gt;
* Access the My Apps page in the Play Store overflow menu&lt;br /&gt;
* Choose update all&lt;br /&gt;
* Choose the Skype app and click the X to cancel the update&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2980</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2980"/>
		<updated>2012-12-05T22:24:22Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypesideload.png|250px]][[File:Skypemarketchecked.png|250px]][[File:Skypemarketunchecked.png|250px]][[File:Overflowplaystore.png|250px]][[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2979</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2979"/>
		<updated>2012-12-05T22:23:26Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: /* Preventing auto-updates */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these instructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
&lt;br /&gt;
[[File:Skypesideload.png|250px]][[File:Skypemarketchecked.png|250px]][[[File:Skypemarketunchecked.png|250px]][File:Overflowplaystore.png|250px]][[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2978</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2978"/>
		<updated>2012-12-05T22:21:15Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automatically attempt to update any and all of your apps if they are out of date, follow these i&lt;br /&gt;
nstructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the Skype play store entry&lt;br /&gt;
[[File:Skypemarketchecked.png|250px]]&lt;br /&gt;
* Uncheck the box to auto update Skype&lt;br /&gt;
[[File:Skypemarketunchecked.png|250px]]&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings&lt;br /&gt;
[[File:Overflowplaystore.png|250px]]&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating&lt;br /&gt;
[[File:Playstoresettings.png|250px]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
[[File:Myapps.png|250px]]&lt;br /&gt;
[[File:Updateall.png|250px]]&lt;br /&gt;
[[File:Playcancel.png|250px]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2977</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2977"/>
		<updated>2012-12-05T22:19:27Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automaticly attempt to update any and all of your apps if they are out of date, follow these i&lt;br /&gt;
nstructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the skype play store entry [[File:Skypemarketchecked.png|thumb]]&lt;br /&gt;
* Uncheck the box to auto update skype [[File:Skypemarketunchecked.png|thumb]]&lt;br /&gt;
* Click the overflow button in the top right or press the menu button and choose settings to edit the global settings [[File:Overflowplaystore.png|thumb]]&lt;br /&gt;
* Be sure to keep this box checked to keep all of your other apps updating [[File:Playstoresettings.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps from the Play Store==&lt;br /&gt;
[[File:Myapps.png|thumb]]&lt;br /&gt;
[[File:Updateall.png|thumb]]&lt;br /&gt;
[[File:Playcancel.png|thumb]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2976</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2976"/>
		<updated>2012-12-05T22:17:46Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Preventing auto-updates==&lt;br /&gt;
The Android Play Store will automaticly attempt to update any and all of your apps if they are out of date, follow these i&lt;br /&gt;
nstructions to prevent this from happening.&lt;br /&gt;
&lt;br /&gt;
* Go to the skype play store entry [[File:Skypemarketchecked.png|thumb]]&lt;br /&gt;
* Skype won't auto update when this is unchecked [[File:Skypemarketunchecked.png|thumb]]&lt;br /&gt;
* Click the overflow button or press the menu button and choose settings to edit the global settings [[File:Overflowplaystore.png|thumb]]&lt;br /&gt;
* Be sure to keep this box checked to keep updating other apps [[File:Playstoresettings.png|thumb]]&lt;br /&gt;
&lt;br /&gt;
==Updating all of your apps==&lt;br /&gt;
[[File:Myapps.png|thumb]]&lt;br /&gt;
[[File:Updateall.png|thumb]]&lt;br /&gt;
[[File:Playcancel.png|thumb]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2975</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2975"/>
		<updated>2012-12-05T22:07:44Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|Sideloading the Skype.apk]]&lt;br /&gt;
[[File:Skypemarketchecked.png|thumb|This is the Skype Play Store entry]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|thumb|Skype won't auto update when this is unchecked]]&lt;br /&gt;
[[File:Overflowplaystore.png|thumb|Click the overflow button or press the menu button and choose settings to edit the global settings]]&lt;br /&gt;
[[File:Playstoresettings.png|thumb|Be sure to keep this box checked to keep updating other apps]]&lt;br /&gt;
[[File:Myapps.png|thumb]]&lt;br /&gt;
[[File:Updateall.png|thumb]]&lt;br /&gt;
[[File:Playcancel.png|thumb]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2974</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2974"/>
		<updated>2012-12-05T22:06:40Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|none|Sideloading the Skype.apk]]&lt;br /&gt;
[[File:Skypemarketchecked.png|thumb|none|This is the Skype Play Store entry]]&lt;br /&gt;
[[File:Skypemarketunchecked.png|thumb|none|Skype won't auto update when this is unchecked]]&lt;br /&gt;
[[File:Overflowplaystore.png|thumb|none|Click the overflow button or press the menu button and choose settings to edit the global settings]]&lt;br /&gt;
[[File:Playstoresettings.png|thumb|none|Be sure to keep this box checked to keep updating other apps]]&lt;br /&gt;
[[File:Playcancel.png|thumb|none|Words]]&lt;br /&gt;
[[File:Updateall.png|thumb|none|Words]]&lt;br /&gt;
[[File:Myapps.png|thumb|none|Words]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2973</id>
		<title>File:Playcancel.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Playcancel.png&amp;diff=2973"/>
		<updated>2012-12-05T22:02:40Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Updateall.png&amp;diff=2972</id>
		<title>File:Updateall.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Updateall.png&amp;diff=2972"/>
		<updated>2012-12-05T22:02:08Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Myapps.png&amp;diff=2971</id>
		<title>File:Myapps.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Myapps.png&amp;diff=2971"/>
		<updated>2012-12-05T22:01:49Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2970</id>
		<title>File:Security.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Security.png&amp;diff=2970"/>
		<updated>2012-12-05T21:47:31Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2969</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2969"/>
		<updated>2012-12-05T21:14:46Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|none|Sideloading the Skype.apk]]These[[File:Skypemarketchecked.png|thumb|none|This is the Skype Play Store entry]]are[[File:Skypemarketunchecked.png|thumb|none|Skype won't auto update when this is unchecked]]test[[File:Overflowplaystore.png|thumb|none|Click the overflow button or press the menu button and choose settings to edit the global settings]]words[[File:Playstoresettings.png|thumb|none|Be sure to keep this box checked to keep updating other apps]].&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2966</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2966"/>
		<updated>2012-12-05T20:53:40Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Undo revision 2965 by Tmosey (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|Sideloading the Skype.apk]][[File:Skypemarketchecked.png|thumb|This is the Skype Play Store entry]][[File:Skypemarketunchecked.png|thumb|Skype won't auto update when this is unchecked]][[File:Overflowplaystore.png|thumb|Click the overflow button or press the menu button and choose settings to edit the global settings]][[File:Playstoresettings.png|thumb|Be sure to keep this box checked to keep updating other apps]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2965</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2965"/>
		<updated>2012-12-05T20:39:11Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;gallery&amp;gt;File:Skypesideload.png|Sideloading the Skype.apk&lt;br /&gt;
File:Skypemarketchecked.png|This is the Skype Play Store entry&lt;br /&gt;
File:Skypemarketunchecked.png|Skype won't auto update when this is unchecked&lt;br /&gt;
File:Overflowplaystore.png|Click the overflow button or press the menu button and choose settings to edit the global settings&lt;br /&gt;
File:Playstoresettings.png|Be sure to keep this box checked to keep updating other apps&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2964</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2964"/>
		<updated>2012-12-05T20:37:38Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|Sideloading the Skype.apk]][[File:Skypemarketchecked.png|thumb|This is the Skype Play Store entry]][[File:Skypemarketunchecked.png|thumb|Skype won't auto update when this is unchecked]][[File:Overflowplaystore.png|thumb|Click the overflow button or press the menu button and choose settings to edit the global settings]][[File:Playstoresettings.png|thumb|Be sure to keep this box checked to keep updating other apps]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=File:Overflowplaystore.png&amp;diff=2963</id>
		<title>File:Overflowplaystore.png</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=File:Overflowplaystore.png&amp;diff=2963"/>
		<updated>2012-12-05T20:33:31Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2962</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2962"/>
		<updated>2012-12-05T20:30:46Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png|thumb|Sideloading the Skype.apk]][[File:Skypemarketchecked.png|thumb|This is the Skype Play Store entry]][[File:Skypemarketunchecked.png|thumb|Skype won't auto update when this is unchecked]][[File:Playstoresettings.png|thumb|Be sure to keep this box checked to keep updating other apps]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
	<entry>
		<id>https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2961</id>
		<title>Obsolete Skype on Android Devices</title>
		<link rel="alternate" type="text/html" href="https://help.grandcare.com/index.php?title=Obsolete_Skype_on_Android_Devices&amp;diff=2961"/>
		<updated>2012-12-05T20:23:39Z</updated>

		<summary type="html">&lt;p&gt;Tmosey: Created page with &amp;quot;File:Skypesideload.pngFile:Skypemarketchecked.pngFile:Skypemarketunchecked.pngFile:Playstoresettings.png&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Skypesideload.png]][[File:Skypemarketchecked.png]][[File:Skypemarketunchecked.png]][[File:Playstoresettings.png]]&lt;/div&gt;</summary>
		<author><name>Tmosey</name></author>
	</entry>
</feed>