<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://in.compucrete.com/index.php?action=history&amp;feed=atom&amp;title=GPS_System_Diagnostics</id>
	<title>GPS System Diagnostics - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://in.compucrete.com/index.php?action=history&amp;feed=atom&amp;title=GPS_System_Diagnostics"/>
	<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=GPS_System_Diagnostics&amp;action=history"/>
	<updated>2026-05-15T19:30:40Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>http://in.compucrete.com/index.php?title=GPS_System_Diagnostics&amp;diff=232&amp;oldid=prev</id>
		<title>WikiAdmin: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=GPS_System_Diagnostics&amp;diff=232&amp;oldid=prev"/>
		<updated>2023-07-14T12:58:50Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 12:58, 14 July 2023&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>WikiAdmin</name></author>
	</entry>
	<entry>
		<id>http://in.compucrete.com/index.php?title=GPS_System_Diagnostics&amp;diff=231&amp;oldid=prev</id>
		<title>Pmorey: Created page with &quot;==Verifi== ===Description===  Verifi uses a subscription based REST API that requires periodic polling to retrieve statuses accumulated since the last poll request. Multiple s...&quot;</title>
		<link rel="alternate" type="text/html" href="http://in.compucrete.com/index.php?title=GPS_System_Diagnostics&amp;diff=231&amp;oldid=prev"/>
		<updated>2018-11-08T14:08:02Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Verifi== ===Description===  Verifi uses a subscription based REST API that requires periodic polling to retrieve statuses accumulated since the last poll request. Multiple s...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Verifi==&lt;br /&gt;
===Description===&lt;br /&gt;
&lt;br /&gt;
Verifi uses a subscription based REST API that requires periodic polling to retrieve statuses accumulated since the last poll request. Multiple statuses for multiple trucks may be received in a single poll request. &lt;br /&gt;
&lt;br /&gt;
===REST API===&lt;br /&gt;
&lt;br /&gt;
There are three API resources that handle status requests. When calling any of these resources, you must include the following HEADER parameters:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
verifi-user=(provided by verifi)&lt;br /&gt;
verify-user-pass=(provided by verifi)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Subscription Request====&lt;br /&gt;
&lt;br /&gt;
Before polling, a &amp;quot;subscription request&amp;quot; call must be made. This is a POST call that includes body content. This call only needs to be made ONCE per session.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
POST https://portal.verificoncrete.com/rs/api/1.0/subscription&lt;br /&gt;
&lt;br /&gt;
Body:&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot; standalone=&amp;quot;yes&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;verifi-subscription-request xmlns=&amp;quot;https://portal.verificoncrete.com/api/1.0/xml/subscription&amp;quot; min-gps-interval-seconds=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;context&amp;gt;&lt;br /&gt;
    &amp;lt;all/&amp;gt;&lt;br /&gt;
&amp;lt;/context&amp;gt;&lt;br /&gt;
&amp;lt;/verifi-subscription-request&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Poll Statuses====&lt;br /&gt;
&lt;br /&gt;
At periodic intervals, make a GET call to the &amp;quot;poll status&amp;quot; resource. This will return all the statuses accumulated since the last call.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;I&amp;gt;NOTE: It is easier to obtain the results in JSON versus XML. To do this, add an &amp;quot;Accept&amp;quot; header to this call with the value &amp;quot;application/json&amp;quot;.&amp;lt;/I&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
GET https://portal.verificoncrete.com/rs/api/1.0/subscription&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sample Response: (TBD)&lt;br /&gt;
&lt;br /&gt;
Status Codes:&lt;br /&gt;
*404 (Resource not found) - There are no statuses since the last call.&lt;br /&gt;
*410 (Gone) - The Verifi session has timed out, you need to make the &amp;quot;subscription request&amp;quot; call again.&lt;br /&gt;
&lt;br /&gt;
====Unsubscribe====&lt;br /&gt;
&lt;br /&gt;
When your session is complete, you should &amp;quot;unsubscribe&amp;quot; by making this DELETE call:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
DELE https://portal.verificoncrete.com/rs/api/1.0/subscription&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Pmorey</name></author>
	</entry>
</feed>