{"info":{"_postman_id":"2c29bfbe-afda-5499-cec2-039711ed0484","name":"Omnilert API Version 2.0","description":"<html><head></head><body><p>Welcome to the Omnilert REST API documentation. This API can be used to customize the functionality of your Omnilert 6 account.</p>\n<p>The Omnilert REST API provides the tools you need to create your own applications to handle Omnilert subscriber management.  All subscriber management functionality provided with the Omnilert platform can be accessed using the Omnilert's REST API. All SMS and email devices added via the API must be validated by a recipient to ensure that consent is unambiguously provided by the device owner.</p>\n<p>Here are some examples of what you can do with the Omnilert REST API. </p>\n<ul>\n<li>Integrate with a Human Resource Management system such as Workday to manage your subscriber base for your notifications.</li>\n<li>Create your own interface within a corporate intranet.</li>\n<li>Integrate subscriber management within a smartphone application.</li>\n</ul>\n<p><em>Please note: API access is restricted to approved accounts only. To obtain API credentials and your Omnilert API Key, please contact your Omnilert Account Manager.</em></p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The Omnilert REST API supports three different methods of authentication:</p>\n<ul>\n<li>Basic Authentication (Recommended)</li>\n<li>Digest Authentication </li>\n<li>Request Authentication</li>\n</ul>\n<p>Basic Authentication: ($_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW']) </p>\n<p>Digest Authentication: ($_SERVER['PHP_AUTH_DIGEST']) which is a 2 step process. </p>\n<p>Request Authentication: $_REQUEST variables: ($_REQUEST['apiusername'] and $_REQUEST['apipassword']).</p>\n<p>You will need to pass your provided <code>omnilert_account_key</code> and your <code>username</code> in the headers of your calls.</p>\n<p><strong>Note:</strong> The code examples provided here do <em>not</em> include authentication. All calls to the Omnilert API must include authentication. </p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<p>API connections which exceed the API limit will receive an <strong>HTTP/1.1 429 - Too Many Requests</strong> response along with a 906 response code.</p>\n<p>API calls that receive a 429 response should be assumed to be not processed and should be retried. If/when this occurs, a one second \"time out\" is recommended for your application before retrying the API call.</p>\n<h5 id=\"response-codes\">Response Codes</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Message</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>900</td>\n<td>Digest Authentication: API username/password may be incorrect.</td>\n</tr>\n<tr>\n<td>901</td>\n<td>Account name variable is missing.</td>\n</tr>\n<tr>\n<td>902</td>\n<td>Account name variable is empty.</td>\n</tr>\n<tr>\n<td>903</td>\n<td>Account name is invalid.</td>\n</tr>\n<tr>\n<td>904</td>\n<td>No authorization specified.</td>\n</tr>\n<tr>\n<td>905</td>\n<td>ACL credential file missing, call Omnilert support.</td>\n</tr>\n<tr>\n<td>906</td>\n<td>Rate exceeded, too many requests at one time, try again.</td>\n</tr>\n<tr>\n<td>907</td>\n<td>Invalid content type, try application\\json for json output.</td>\n</tr>\n<tr>\n<td>908</td>\n<td>Failed Authentication. Please use Basic, digest or request.</td>\n</tr>\n<tr>\n<td>909</td>\n<td>there is a problem with your configuration file, call Omnilert support.</td>\n</tr>\n<tr>\n<td>910</td>\n<td>Your ip address is not authorized to access this page</td>\n</tr>\n<tr>\n<td>911</td>\n<td>Invalid request method. Should be put, get, delete or post.</td>\n</tr>\n<tr>\n<td>912</td>\n<td>Invalid endpoint.</td>\n</tr>\n<tr>\n<td>913</td>\n<td>Invalid method for the endpoint.</td>\n</tr>\n<tr>\n<td>914</td>\n<td>You don't have permissions to run this command (ACL).</td>\n</tr>\n<tr>\n<td>915</td>\n<td>Record not found.</td>\n</tr>\n<tr>\n<td>916</td>\n<td>Missing required data for the command.</td>\n</tr>\n<tr>\n<td>917</td>\n<td>Username contains invalid characters. Must be alpha-numeric, underscore (_), period (.), dash (-) or at sign (@).</td>\n</tr>\n<tr>\n<td>918</td>\n<td>Username already in use.</td>\n</tr>\n<tr>\n<td>919</td>\n<td>Invalid date format, needs to be in the format or <code>mm-dd-yyyy</code>, <code>mm/dd/yyyy</code>, <code>yyyy-mm-dd</code> or <code>yyyy/mm/dd</code>.</td>\n</tr>\n<tr>\n<td>920</td>\n<td>Invalid date.</td>\n</tr>\n<tr>\n<td>921</td>\n<td>Invalid email address.</td>\n</tr>\n<tr>\n<td>922</td>\n<td>Group name already in use.</td>\n</tr>\n<tr>\n<td>923</td>\n<td>Email address already in use by this user.</td>\n</tr>\n<tr>\n<td>924</td>\n<td>SMS number already in use by this user.</td>\n</tr>\n<tr>\n<td>925</td>\n<td>TTY number already in use by this user.</td>\n</tr>\n<tr>\n<td>926</td>\n<td>Voice number already in use by this user.</td>\n</tr>\n<tr>\n<td>927</td>\n<td>Max email addresses in use for this user.</td>\n</tr>\n<tr>\n<td>928</td>\n<td>Max sms numbers in use for this user.</td>\n</tr>\n<tr>\n<td>929</td>\n<td>Max tty numbers in use for this user.</td>\n</tr>\n<tr>\n<td>930</td>\n<td>Max voice numbers in use for this user.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"rate-limit\">Rate limit</h1>\n<p>The Omnilert REST API does not accept an unlimited numbers of API calls from any\ngiven source. </p>\n<p>This API is designed for retrieving and updating subscriber data in real-time from your own custom application, and not for the bulk loading of subscribers. \n(The Omnilert platform provides a suite of upload utilities for bulk loading subscriber data into your Omnilert notification system.) </p>\n<p>There is a limit of 1 connections/calls per 1 second interval.</p>\n<p>The HTTP <strong>429 Too Many Requests</strong> response status code indicates the user has sent too many requests in a given amount of time. We advise that you code your requests so that when you receive a 429 response, you have the process sleep for one second before re-submitting the request.  The retry loop in your application should repeat a specific request a maximum of three times. If you receive three HTTP 429 responses in a row on that request, you should show an error message on screen and have the end-user try again from the start (which should reset the API rate) or increase the wait time before re-submitting the request in your application.</p>\n<p><em>Please note: Repeated excesses may cause your IP to be blocked/suspended from API access to\nOmnilert.</em></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"},{"content":"Rate limit","slug":"rate-limit"}],"owner":"245792","collectionId":"2c29bfbe-afda-5499-cec2-039711ed0484","publishedId":"7157vh2","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2017-11-15T22:39:55.000Z"},"item":[{"name":"Subscribers","item":[{"name":"Delete Subscriber","id":"cec578f6-a789-eb88-8d83-663f6df071cd","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p> API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/","description":"<p>Permanently removes the subscriber from the Omnilert system. </p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed. </p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"cec578f6-a789-eb88-8d83-663f6df071cd"},{"name":"Delete Subscriber Email","id":"95718381-888e-4be2-9926-cd4f5f4724a7","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/email/{{email_id_to_delete}}/","description":"<p>The <code>subscriber_id</code> and the <code>email_id_to_delete</code> are passed in the URL to remove that email from the subscriber's record.</p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed. </p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","email","{{email_id_to_delete}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"95718381-888e-4be2-9926-cd4f5f4724a7"},{"name":"Delete Subscriber From Group","id":"f20ecb6c-a5c2-e4da-64c7-24bd5cc7f8f3","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/groups/{{group_id}}/","description":"<p>The <code>subscriber_id</code> and the <code>group_id</code> are passed in the URL to remove that subscriber from the group.</p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed. </p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f20ecb6c-a5c2-e4da-64c7-24bd5cc7f8f3"},{"name":"Delete Subscriber SMS","id":"06d15cd0-6552-3c47-938f-b1f55b34f37a","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/sms/{{sms_id_to_delete}}/","description":"<p>Removes an SMS (text messaging) device. </p>\n<p>The <code>subscriber_id</code> and the <code>sms_id_to_delete</code> are passed in the URL to remove that sms number from the subscriber's record.</p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed. </p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","sms","{{sms_id_to_delete}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"06d15cd0-6552-3c47-938f-b1f55b34f37a"},{"name":"Delete Subscriber Voice","id":"e48241ee-d13a-4466-8197-3315dee35b9d","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/voice/{{voice_id_to_delete}}/","description":"<p>The <code>subscriber_id</code> and the <code>voice_id_to_delete</code> are passed in the URL to remove that voice calling number from the subscriber's record.</p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed. </p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","voice","{{voice_id_to_delete}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e48241ee-d13a-4466-8197-3315dee35b9d"},{"name":"Delete Subscriber Tag","id":"7ca273e6-6a79-4196-ab38-a3ba8b950741","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tags/{{tag_id}}/","description":"<p>Removes a <a href=\"https://support.omnilert.com/hc/en-us/articles/115009551227-Tags\">tag</a> from a subscriber's record. </p>\n<p>The subscriber_id and the tag_id are passed in the URL to remove that tag from the subscriber's record.</p>\n<p><strong>Note:</strong> Deletion of data is permanent and can not be reversed.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","tags","{{tag_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ca273e6-6a79-4196-ab38-a3ba8b950741"},{"name":"Delete Subscriber TTY","id":"fc245b71-fd55-8420-476a-6206877ce9d8","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/{{tty_id_to_delete}}/","description":"<p>The <code>subscriber_id</code> and the <code>tty_id_to_delete</code> are passed in the URL to remove that TTY number from the subscriber's record.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","tty","{{tty_id_to_delete}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"100f0423-160b-8128-7e31-ee07fc2e7fe6","name":"Delete Subscriber TTY","originalRequest":{"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/559/"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 31 Oct 2017 21:26:20 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"327","body":""}],"_postman_id":"fc245b71-fd55-8420-476a-6206877ce9d8"},{"name":"Subscriber Detail","id":"53865ba8-b8eb-1da1-cdd6-5de63749cd5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"}],"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}|{{username}}/","description":"<p>Retrieves a JSON array of a specific subscriber and their associated information (devices, groups, tags, etc.) in your account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Returns an integer value. <ul><li>-1 = Subscriber replied “OPTOUT” using the special <a href=\"https://support.omnilert.com/hc/en-us/articles/360007712774\">“opt-out” mode</a>.  </li> <li>0 = Subscriber has not validated any devices (SMS, Email, or added Voice). This subscriber won’t receive alerts.</li> <li> 1+ = Subscriber has validated a device. <br />A subscriber will receive alerts on any currently available devices in their profile so long as this number is greater than zero. </li></ul></td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Returns an integer value. <ul><li>-1 = Subscriber terminated their subscriber account via the subscriber portal.</li> <li> 0 = Subscriber account is “inactive” and won’t receive alerts. </li> <li> 1 = Subscriber account is “active” and will receive alerts.</li></ul></td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out or terminted their account. <br />Returns <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated with the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n</tbody>\n</table>\n</div><p>*<strong>devices sub-arrays</strong> </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise. <br />(\"-1\" indicates permanent failure to deliver to this address)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\"</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>subscriber_id</code> or the <code>username</code> is passed in the URL to retrieve the detail for that subscriber.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}|{{username}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"399a1e10-168e-aa4b-a913-9cb51809bfc9","name":"Subscriber Detail","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"649","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:35:46 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"133","body":"{\n    \"id\": \"49588280\",\n    \"username\": \"flash\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2025-11-25\",\n    \"firstname\": \"Barry\",\n    \"lastname\": \"Allen\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en\",\n    \"personal_access_code\": \"7F7209CC1D\",\n    \"tags\": \"Security Team, Scientists\",\n    \"groups\": null,\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"27467032\",\n                \"user_id\": \"49588280\",\n                \"email\": \"flash@superheroemail.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            },\n            {\n                \"id\": \"32795178\",\n                \"user_id\": \"49588280\",\n                \"email\": \"speedster2020@zmail.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            },\n            {\n                \"id\": \"33110943\",\n                \"user_id\": \"49588280\",\n                \"email\": \"new_email_addy@whodis.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            },\n            {\n                \"id\": \"33110944\",\n                \"user_id\": \"49588280\",\n                \"email\": \"superfastguyy@fake.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"42930963\",\n                \"user_id\": \"49588280\",\n                \"phone\": \"2125551234\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"16583198\",\n                \"user_id\": \"49588280\",\n                \"number\": \"2125551234\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"mobile_app\": [\n            {\n                \"personal_access_code\": \"ad6ca705f6\"\n            }\n        ]\n    }\n}"}],"_postman_id":"53865ba8-b8eb-1da1-cdd6-5de63749cd5b"},{"name":"All Subscribers","id":"1978c3f4-58ed-cdcb-f1d4-6f341a38457b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/","description":"<p>Retrieves a JSON array of all subscribers in your Omnilert account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Returns an integer value. <ul><li>-1 = Subscriber replied “OPTOUT” using the special <a href=\"https://support.omnilert.com/hc/en-us/articles/360007712774\">“opt-out” mode</a>.  </li> <li>0 = Subscriber has not validated any devices (SMS, Email, or added Voice). This subscriber won’t receive alerts.</li> <li> 1+ = Subscriber has validated a device. <br />A subscriber will receive alerts on any currently available devices in their profile so long as this number is greater than zero. </li></ul></td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Returns an integer value. <ul><li>-1 = Subscriber terminated their subscriber account via the subscriber portal.</li> <li> 0 = Subscriber account is “inactive” and won’t receive alerts. </li> <li> 1 = Subscriber account is “active” and will receive alerts.</li></ul></td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out/terminated their service or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated to the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n</tbody>\n</table>\n</div><p>*<strong>devices sub-arrays</strong> </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"495f6a00-a070-477e-8ccf-40c2e49a3b08","name":"All Subscribers - success","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, HEAD"},{"key":"Access-Control-Allow-Origin","value":"https://omnilert.net"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none';"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 16 Apr 2020 20:07:29 GMT"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"transfer-encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"56459485\",\n        \"username\": \"0ghtr2sb1h0d3281jcbng0mqihocc3er6fy2oqd.burpcollaborator.net\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-03-12\",\n        \"firstname\": \"YYVIwgDi\",\n        \"lastname\": \"YYVIwgDi\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"7F7209CC1D\",\n        \"tags\": null,\n        \"groups\": \"B Group\"\n    },\n    {\n        \"id\": \"56459797\",\n        \"username\": \"0optz20b9h8db2g1rcjno0uqqhwck3mrej2bp1dq\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-03-12\",\n        \"firstname\": \"YYVIwgDi\",\n        \"lastname\": \"YYVIwgDi\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"238AEF3125\",\n        \"tags\": null,\n        \"groups\": \"B Group\"\n    },\n    {\n        \"id\": \"56490021\",\n        \"username\": \"2rvt3veh4k\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-03-16\",\n        \"firstname\": \"gUITCpOk\",\n        \"lastname\": \"gUITCpOk\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"61B0E31AC8\",\n        \"tags\": null,\n        \"groups\": \"B Group\"\n    },\n    {\n        \"id\": \"56460008\",\n        \"username\": \"4idirzkzas\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-03-12\",\n        \"firstname\": \"RiTMMkoG\",\n        \"lastname\": \"RiTMMkoG\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"8B474B4593\",\n        \"tags\": null,\n        \"groups\": \"B Group\"\n    },\n    {\n        \"id\": \"56460014\",\n        \"username\": \"4x2x869filhhk6p50gsrx43uzl5htfh75zspge.burpcollaborator.net\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-03-12\",\n        \"firstname\": \"RiTMMkoG\",\n        \"lastname\": \"RiTMMkoG\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"F283C1688D\",\n        \"tags\": null,\n        \"groups\": \"B Group\"\n    },\n    {\n        \"id\": \"56384239\",\n        \"username\": \"AAAron\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2028-02-26\",\n        \"firstname\": \"AARON<script>alert(\\\"hey AAARON\\\");</script>\",\n        \"lastname\": \"TEST\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"10BAE40088\",\n        \"tags\": null,\n        \"groups\": \"Scott Howard - Test Group\"\n    },\n    {\n        \"id\": \"55475235\",\n        \"username\": \"AbelBoyd\",\n        \"validated\": \"0\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Abel\",\n        \"lastname\": \"Boyd\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"FFCCFC90FF\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55475127\",\n        \"username\": \"AbigailLi\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Abigail\",\n        \"lastname\": \"Li\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"F8DEFE603A\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_500\"\n    },\n    {\n        \"id\": \"55475401\",\n        \"username\": \"AbrahamGarrison\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Abraham\",\n        \"lastname\": \"Garrison\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"EFF3865F97\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\",\n        \"devices\": {\n            \"email\": [\n                {\n                    \"id\": \"33514388\",\n                    \"user_id\": \"55475401\",\n                    \"email\": \"test@test.com\",\n                    \"validation_status\": \"-1\",\n                    \"active_status\": \"0\"\n                }\n            ]\n        }\n    },\n    {\n        \"id\": \"55475224\",\n        \"username\": \"AdaJacobson\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Ada\",\n        \"lastname\": \"Jacobson\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"6C0A1A9C1D\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\",\n        \"devices\": {\n            \"email\": [\n                {\n                    \"id\": \"33514437\",\n                    \"user_id\": \"55475224\",\n                    \"email\": \"test@test.com\",\n                    \"validation_status\": \"-1\",\n                    \"active_status\": \"0\"\n                }\n            ]\n        }\n    },\n    {\n        \"id\": \"55474769\",\n        \"username\": \"AdanFletcher\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Adan\",\n        \"lastname\": \"Fletcher\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"B72C1A417B\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_500\"\n    },\n    {\n        \"id\": \"55475258\",\n        \"username\": \"AddieLambert\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Addie\",\n        \"lastname\": \"Lambert\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"E12D928B15\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55475253\",\n        \"username\": \"AdelaDonaldson\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Adela\",\n        \"lastname\": \"Donaldson\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"DB842732C6\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55475398\",\n        \"username\": \"AdelineNavarro\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Adeline\",\n        \"lastname\": \"Navarro\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"E1EAAEEDD0\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55474816\",\n        \"username\": \"AdolphAbbott\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Adolph\",\n        \"lastname\": \"Abbott\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"5EA59424A9\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_500\"\n    },\n    {\n        \"id\": \"55475514\",\n        \"username\": \"AdrianaNovak\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Adriana\",\n        \"lastname\": \"Novak\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"E0698B4151\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55475126\",\n        \"username\": \"AgnesMercer\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Agnes\",\n        \"lastname\": \"Mercer\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"446BF6A3CF\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_500\"\n    },\n    {\n        \"id\": \"55475509\",\n        \"username\": \"AgustinGates\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Agustin\",\n        \"lastname\": \"Gates\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"40E5AC7BEB\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55475680\",\n        \"username\": \"AhmadRamirez\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Ahmad\",\n        \"lastname\": \"Ramirez\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"9C113DB1B7\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_200\"\n    },\n    {\n        \"id\": \"55475357\",\n        \"username\": \"AimeeHarrington\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Aimee\",\n        \"lastname\": \"Harrington\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"25006A420A\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_300\"\n    },\n    {\n        \"id\": \"55474779\",\n        \"username\": \"AlanaHaley\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"Alana\",\n        \"lastname\": \"Haley\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"3590693B4C\",\n        \"tags\": null,\n        \"groups\": \"PUSH_TEST_1000,PUSH_TEST_500\"\n    }\n]"},{"id":"9e1041fd-da7a-bbdf-9621-f07293e4d759","name":"All Subscribers","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1682","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:27:23 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" [\n    {\n        \"id\": \"50955133\",\n        \"username\": \"demosubscriber\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2018-10-31\",\n        \"firstname\": \"Demo\",\n        \"lastname\": \"Subscriber\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"2017-11-01 18:35:48\",\n        \"preferred_languages\": \"en,de\",\n        \"tags\": \"Security,First Responders\",\n        \"groups\": \"Closings,Weather Alerts\",\n        \"devices\": {\n            \"email\": [\n                {\n                    \"id\": \"28684868\",\n                    \"user_id\": \"50955133\",\n                    \"email\": \"no-reply@omnilert.com\",\n                    \"validation_status\": \"1\",\n                    \"active_status\": \"1\"\n                }\n            ],\n            \"sms\": [\n                {\n                    \"id\": \"40043238\",\n                    \"user_id\": \"50955133\",\n                    \"phone\": \"9999999999\",\n                    \"carrier_id\": \"0\",\n                    \"validation_status\": \"1\",\n                    \"active_status\": \"1\",\n                    \"carrier_name\": \"Default\"\n                }\n            ],\n            \"voice\": [\n                {\n                    \"id\": \"17146407\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"active_status\": \"1\"\n                }\n            ],\n            \"tty\": [\n                {\n                    \"id\": \"560\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"validated\": \"0\",\n                    \"active\": \"1\",\n                    \"deleted\": \"0\"\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"1978c3f4-58ed-cdcb-f1d4-6f341a38457b"},{"name":"All Subscribers (No Devices)","id":"b07c1fb2-9d70-4303-87e0-eb23ac216ee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/no_devices","description":"<p>Retrieves a JSON array of all subscribers in your Omnilert account and does <strong>not</strong> include their devices (SMS, Email, etc.).</p>\n<p>This is designed for use when pulling all users and all devices is too large/slow. The return JSON contains the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Returns an integer value.  <br />  <br />- -1 = Subscriber replied “OPTOUT” using the special <a href=\"https://support.omnilert.com/hc/en-us/articles/360007712774\">“opt-out” mode</a>.  <br />  <br />  <br />- 0 = Subscriber has not validated any devices (SMS, Email, or added Voice). This subscriber won’t receive alerts.  <br />  <br />  <br />- 1+ = Subscriber has validated a device.  <br />A subscriber will receive alerts on any currently available devices in their profile so long as this number is greater than zero.</td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Returns an integer value.  <br />  <br />- -1 = Subscriber terminated their subscriber account via the subscriber portal.  <br />  <br />  <br />- 0 = Subscriber account is “inactive” and won’t receive alerts.  <br />  <br />  <br />- 1 = Subscriber account is “active” and will receive alerts.</td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out/terminated their service or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated to the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","no_devices"],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"8133cf5a-df9a-4349-a9b7-8e65be24cd43","name":"All Subscribers - success","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/no_devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, HEAD"},{"key":"Access-Control-Allow-Origin","value":"https://omnilert.net"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Content-Security-Policy","value":"frame-ancestors 'none';"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Thu, 16 Apr 2020 20:07:29 GMT"},{"key":"Referrer-Policy","value":"same-origin"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"transfer-encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"55512345\",\n        \"username\": \"jdoe\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"John\",\n        \"lastname\": \"Doe\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"en,de\",\n        \"personal_access_code\": \"ABC7654321\",\n        \"tags\": \"Faculty and Staff\",\n        \"groups\": null\n    },\n    {\n        \"id\": \"65055555\",\n        \"username\": \"jsmith\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2027-08-05\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Smith,\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"ABC1234567\",\n        \"tags\": null,\n        \"groups\": \"East Campus,Weather\"\n    }\n]"},{"id":"1d1797b7-e290-4be3-8fba-62ba1885ea12","name":"All Subscribers (No Devices)","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key","disabled":false},{"key":"username","value":"{{username}}","description":"API username","disabled":false}],"url":"https://api.omnilert.net/v2/subscribers/no_devices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","description":""},{"key":"Content-Length","value":"1682","description":""},{"key":"Content-Type","value":"application/json","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:27:23 GMT","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","description":""},{"key":"Vary","value":"Host","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":"[\n    {\n        \"id\": \"55512345\",\n        \"username\": \"jdoe\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"0000-00-00\",\n        \"firstname\": \"John\",\n        \"lastname\": \"Doe\",\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"en,de\",\n        \"personal_access_code\": \"ABC7654321\",\n        \"tags\": \"Faculty and Staff\",\n        \"groups\": null\n    },\n    {\n        \"id\": \"65055555\",\n        \"username\": \"jsmith\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2027-08-05\",\n        \"firstname\": \"Jane\",\n        \"lastname\": \"Smith,\n        \"deleted\": \"0\",\n        \"optout_date\": \"0000-00-00 00:00:00\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"ABC1234567\",\n        \"tags\": null,\n        \"groups\": \"East Campus,Weather\"\n    }\n]"}],"_postman_id":"b07c1fb2-9d70-4303-87e0-eb23ac216ee1"},{"name":"Validated Subscribers","id":"250517e9-05c1-5b9a-7ae7-a75063ba1e37","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/validated/","description":"<p>Retrieves a JSON array of all validated subscribers in your account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Will return a \"1\" if the subscriber has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Will return a \"1\" id the subscriber is active or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated with the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n<tr>\n<td>*<strong>devices sub-arrays</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","validated",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"124f9dee-c3b8-0070-43fb-4c14c7db2a57","name":"Validated Subscribers","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/validated/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"686","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:37:38 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"182","body":" [\n    {\n        \"id\": \"50955133\",\n        \"username\": \"demosubscriber\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2018-10-31\",\n        \"firstname\": \"Demo\",\n        \"lastname\": \"Subscriber\",\n        \"preferred_languages\": \"en,de\",\n        \"personal_access_code\": \"7F7209CC1D\",\n        \"tags\": \"Security,First Responders\",\n        \"groups\": null,\n        \"devices\": {\n            \"tty\": [\n                {\n                    \"id\": \"560\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"validated\": \"0\",\n                    \"active\": \"1\",\n                    \"deleted\": \"0\"\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"250517e9-05c1-5b9a-7ae7-a75063ba1e37"},{"name":"Unvalidated Subscribers","id":"e4d2b33a-fffd-34cc-1498-5f7de9babebd","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/unvalidated/","description":"<p>Unvlidated subscribers are subscribers without any validated SMS or Email devices (or voice numbers.) These subscribers do not receive alerts.</p>\n<p>Retrieves a JSON array of all unvalidated subscribers in your account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Will return a \"1\" if the subscriber has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Will return a \"1\" if the subscriber is active or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated with the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n<tr>\n<td>*<strong>devices sub-arrays</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","unvalidated",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"38e37b9d-6983-39ff-7121-16e937b5721b","name":"Unvalidated Subscribers","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/unvalidated/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"686","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:37:10 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"173","body":" [\n    {\n        \"id\": \"50955133\",\n        \"username\": \"demosubscriber\",\n        \"validated\": \"0\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2018-10-31\",\n        \"firstname\": \"Demo\",\n        \"lastname\": \"Subscriber\",\n        \"preferred_languages\": \"en,de\",\n        \"personal_access_code\": \"7F7209CC1D\",\n        \"tags\": \"Security,First Responders\",\n        \"groups\": null,\n        \"devices\": {\n            \"tty\": [\n                {\n                    \"id\": \"560\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"validated\": \"0\",\n                    \"active\": \"1\",\n                    \"deleted\": \"0\"\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"e4d2b33a-fffd-34cc-1498-5f7de9babebd"},{"name":"Expired Subscribers","id":"0f15893a-dbe8-44af-52f1-22b9f074ec2f","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/expired/","description":"<p><a href=\"https://support.omnilert.com/hc/en-us/articles/115007882947-Subscribers-Expired\">Expired subscribers</a> are subscribers who have allowed their subscription to lapse without logging in to renew. Theese subscribers will have an <code>account_expiration_date</code> value that is before the current date and thus will no longer receive alerts.  (To re-enable an expired subscriber, update their record with new <code>account_expiration_date</code> date in the future.) <br /><br /></p>\n<p>Retrieves a JSON array of all <strong>expired</strong> subscribers in your account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Will return a \"1\" if the subscriber has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Will return a \"1\" if the subscriber is active or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated with the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n<tr>\n<td>*<strong>devices sub-arrays</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","expired",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"1e4abc57-4953-19ea-280b-9a7301447b73","name":"Expired Subscribers","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/expired/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1612","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:29:12 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"224","body":" [\n    {\n        \"id\": \"50955133\",\n        \"username\": \"demosubscriber\",\n        \"validated\": \"1\",\n        \"access_level\": \"1\",\n        \"account_expiration_date\": \"2017-10-31\",\n        \"firstname\": \"Demo\",\n        \"lastname\": \"Subscriber\",\n        \"preferred_languages\": \"en,de\",\n        \"personal_access_code\": \"7F7209CC1D\",\n        \"tags\": \"Security,First Responders\",\n        \"groups\": \"Closings,Weather Alerts\",\n        \"devices\": {\n            \"email\": [\n                {\n                    \"id\": \"28684868\",\n                    \"user_id\": \"50955133\",\n                    \"email\": \"no-reply@omnilert.com\",\n                    \"validation_status\": \"1\",\n                    \"active_status\": \"1\"\n                }\n            ],\n            \"sms\": [\n                {\n                    \"id\": \"40043238\",\n                    \"user_id\": \"50955133\",\n                    \"phone\": \"9999999999\",\n                    \"carrier_id\": \"0\",\n                    \"validation_status\": \"1\",\n                    \"active_status\": \"1\",\n                    \"carrier_name\": \"Default\"\n                }\n            ],\n            \"voice\": [\n                {\n                    \"id\": \"17146407\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"active_status\": \"1\"\n                }\n            ],\n            \"tty\": [\n                {\n                    \"id\": \"560\",\n                    \"user_id\": \"50955133\",\n                    \"number\": \"9999999999\",\n                    \"validated\": \"0\",\n                    \"active\": \"1\",\n                    \"deleted\": \"0\"\n                }\n            ]\n        }\n    }\n]"}],"_postman_id":"0f15893a-dbe8-44af-52f1-22b9f074ec2f"},{"name":"Opted-Out Subscribers","id":"81b31d27-ef2b-4456-326e-b670508a778b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/subscribers/optout/","description":"<p>\"Opted-Out\" subscribers are subscribers that have specifically opted-out of this service using the 'opt-out' option from the <a href=\"https://support.omnilert.com/hc/en-us/articles/115008498088\">Settings &gt; System &gt; Subscribers</a> section of the administrator portal. The <code>optout_date</code> is the date at which the subscriber had opted-out of the service.<br /><br />\n<strong>Note:</strong> Typically, <a href=\"https://support.omnilert.com/hc/en-us/articles/360007712774\">Opt-Out Mode</a> is designed for bulk-import/upload via CSV files and should not be used with this API. Subscribers who have officially \"opted out\" will have a <code>validated</code> status of -1.<br /><br /> </p>\n<p>Retrieves a JSON array of all <strong>opted-out</strong> subscribers in your account with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the subscriber record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The username of the subscriber.</td>\n</tr>\n<tr>\n<td>validated</td>\n<td>Will return a \"1\" if the subscriber has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>access_level</td>\n<td>Will return a \"1\" if the subscriber is active or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>account_expiration_date</td>\n<td>Will return a <code>0000-00-00</code> if the subscriber has no expiration date or <code>YYYY-MM-DD</code> otherwise.</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The subscriber's first name.</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The subscriber's last name.</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Will return a \"1\" if the subscriber has been deleted or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>optout_date</td>\n<td>Returns a <code>YYYY-MM-DD HH:MM:SS</code> if the subscriber has opted-out or <code>0000-00-00 00:00:00</code> otherwise.</td>\n</tr>\n<tr>\n<td>preferred_languages</td>\n<td>Returns a comma delimited list of the subscriber's preferred languages (i.e.: \"en,de\".)</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>Returns a comma delimited list of the tags associated with the subscriber.</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>Returns a comma delimited list of the groups the subscriber belongs to.</td>\n</tr>\n<tr>\n<td>devices</td>\n<td><em>See following devices sub-arrays*</em></td>\n</tr>\n<tr>\n<td>*<strong>devices sub-arrays</strong></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>email</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated email record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The subscriber's email address.</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's email has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's email is active or a \"0\" otherwise.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>sms</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated SMS number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The subscriber's SMS number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>carrier_id</td>\n<td>The ID of the subscriber's carrier (i.e.: \"149\".)</td>\n</tr>\n<tr>\n<td>validation_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number has been validated or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's SMS number is active or a \"0\".</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the subscriber's SMS carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>voice</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated voice number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's voice number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's voice number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>tty</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>ID for the subscriber's associated TTY number record.</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>The subscriber's record ID.</td>\n</tr>\n<tr>\n<td>number</td>\n<td>The subscriber's TTY number (i.e.: \"9999999999\".)</td>\n</tr>\n<tr>\n<td>active_status</td>\n<td>Will return a \"1\" if the subscriber's TTY number is active or a \"0\".</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>mobile_app</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personal_access_code</td>\n<td>The personal access code is unique to a given subscriber and does not change.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","subscribers","optout",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"b28bee12-f25c-c2f1-4c9c-b05b0223b26d","name":"Opted Out Subscribers","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/subscribers/optout/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"684","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:34:26 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"163","body":"[\n    {\n        \"id\": \"54381791\",\n        \"username\": \"mrfreeze\",\n        \"validated\": \"-1\",\n        \"access_level\": \"1\",\n        \"firstname\": \"Victor\",\n        \"lastname\": \"Fries\",\n        \"optout_date\": \"2019-03-01 21:12:25\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"7F7209CC1D\",\n        \"tags\": null,\n        \"groups\": null\n    },\n    {\n        \"id\": \"53937135\",\n        \"username\": \"riddler\",\n        \"validated\": \"-1\",\n        \"access_level\": \"1\",\n        \"firstname\": \"Edward\",\n        \"lastname\": \"Nigma\",\n        \"optout_date\": \"2018-12-12 21:14:05\",\n        \"preferred_languages\": \"\",\n\t\t\"personal_access_code\": \"238AEF3125\",\n\t\t\"tags\": null,\n        \"groups\": null\n    },\n    {\n        \"id\": \"53868019\",\n        \"username\": \"penguin\",\n        \"validated\": \"-1\",\n        \"access_level\": \"1\",\n        \"firstname\": \"Oswald\",\n        \"lastname\": \"Cobblepot\",\n        \"optout_date\": \"2018-11-29 18:02:12\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"61B0E31AC8\",\n        \"tags\": null,\n        \"groups\": null\n    },\n    {\n        \"id\": \"54551926\",\n        \"username\": \"kingpin\",\n        \"validated\": \"-1\",\n        \"access_level\": \"0\",\n        \"firstname\": \"Wilson\",\n        \"lastname\": \"Fisk\",\n        \"optout_date\": \"2019-04-15 14:37:10\",\n        \"preferred_languages\": \"\",\n        \"personal_access_code\": \"8B474B4593\",\n        \"tags\": null,\n        \"groups\": null\n    }\n]"}],"_postman_id":"81b31d27-ef2b-4456-326e-b670508a778b"},{"name":"Create Subscriber","id":"1a41374e-8a4d-f72c-0787-438ba1529d82","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{subscriber_new_username}}","type":"text","description":"<p>Subscriber's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@). <strong>(required)</strong></p>\n"},{"key":"password","value":"{{subscriber_new_password}}","type":"text","description":"<p>The password you wish to set for this subscriber. <strong>(required)</strong></p>\n"},{"key":"firstname","value":"{{subscriber_new_firstname}}","type":"text","description":"<p>Subscriber's first name. <strong>(required)</strong></p>\n"},{"key":"lastname","value":"{{subscriber_new_lastname}}","type":"text","description":"<p>Subscriber's last name. <strong>(required)</strong></p>\n"},{"key":"account_expiration_date","value":"{{subscriber_new_expiration_date}}","type":"text","description":"<p>Account expiration date for subscriber. Format as <code>YYYY-MM-DD</code> or <code>0000-00-00</code> for no expiration date.</p>\n"},{"key":"exclude_from_all_users","value":"{{subscriber_new_exclude_all_users}}","type":"text","description":"<p>Defaults to \"0\". Set to a \"1\" to have the subscriber NOT get messages when a message is sent to ‘ALL SUBSCRIBERS’.</p>\n"},{"key":"preferred_languages","value":"{{subscriber_new_preferred_languages}}","type":"text","description":"<p>A comma separated list of the subscribers preferred languages (i.e.: \"en,de\".)</p>\n"},{"key":"tags","value":"{{subscriber_new_tags}}","type":"text","description":"<p>A comma separated list of the tags associated with the subscriber (i.e.: \"Staff,Security\".)</p>\n"},{"key":"groups","value":"{{subscriber_new_groups}}","type":"text","description":"<p>A comma separated list of all groups you want the subscriber to be associated with (i.e.: \"Closings,Weather Alerts\".)</p>\n"}]},"url":"https://api.omnilert.net/v2/subscribers/","urlObject":{"protocol":"https","path":["v2","subscribers",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"8f42c0af-72fa-71f7-c8bd-28039e4c1f50","name":"Create Subscriber","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{subscriber_new_username}}","type":"text","description":"Subscriber's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@)."},{"key":"password","value":"{{subscriber_new_password}}","type":"text","description":"The password you wish to set for this subscriber."},{"key":"firstname","value":"{{subscriber_new_firstname}}","type":"text","description":"Subscriber's first name."},{"key":"lastname","value":"{{subscriber_new_lastname}}","type":"text","description":"Subscriber's last name."},{"key":"account_expiration_date","value":"{{subscriber_new_expiration_date}}","type":"text","description":"Account expiration date for subscriber. Format as `YYYY-MM-DD` or `0000-00-00` for no expiration date."},{"key":"exclude_from_all_users","value":"{{subscriber_new_exclude_all_users}}","type":"text","description":"Defaults to \"0\". Set to a \"1\" to have the subscriber NOT get messages when a message is sent to ‘ALL SUBSCRIBERS’."},{"key":"preferred_languages","value":"{{subscriber_new_preferred_languages}}","type":"text","description":"A comma separated list of the subscribers preferred languages (i.e.: \"en,de\".)"},{"key":"tags","value":"{{subscriber_new_tags}}","type":"text","description":"A comma separated list of the tags associated with the subscriber (i.e.: \"Staff,Security\".)"},{"key":"groups","value":"{{subscriber_new_groups}}","type":"text","description":"A comma separated list of all groups you want the subscriber to be associated with (i.e.: \"Closings,Weather Alerts\".)"}]},"url":"https://api.omnilert.net/v2/subscribers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"275","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:12:17 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"332","body":" {\n    \"id\": \"50974369\",\n    \"username\": \"newsubscriber\",\n    \"account_expiration_date\": \"0000-00-00\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"preferred_languages\": \"en,de\",\n    \"tags\": \"First Responders,Security,Staff\",\n    \"groups\": \"Closings,Weather Alerts\"\n}"}],"_postman_id":"1a41374e-8a4d-f72c-0787-438ba1529d82"},{"name":"Add Subscriber to Group","id":"f298a196-ac65-4af8-bf43-7fc72a2fff3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/groups/{{group_id}}/","description":"<p>Adds an existing subscriber to an existing Group.</p>\n<p>Include the <code>subscriber_id</code> and <code>group_id</code> values in the URL of this PUT request.</p>\n<p>Returns JSON output showing Subscriber Detail info.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"346de6d4-3e94-4905-bcbe-c7b476db895f","name":"Add Subscriber to Group","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/groups/{{group_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 17 Jan 2020 22:52:10 GMT"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Content-Length","value":"1515"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"55521234\",\n    \"username\": \"jdoe\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2025-11-14\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,es\",\n    \"tags\": \"Manhattan, NY\",\n    \"groups\": \"West Campus,Response Team,Email Admins\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"32942373\",\n                \"user_id\": \"55524411\",\n                \"email\": \"sample@example.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"43613563\",\n                \"user_id\": \"55521234\",\n                \"phone\": \"2125551234\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            },\n            {\n                \"id\": \"43858712\",\n                \"user_id\": \"55521234\",\n                \"phone\": \"2125550987\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f298a196-ac65-4af8-bf43-7fc72a2fff3b"},{"name":"Subscriber - Add Tags","event":[{"listen":"prerequest","script":{"id":"0f6504e8-d55b-440e-9df0-e3600ec6acce","exec":[""],"type":"text/javascript"}}],"id":"4e6c140f-3556-478b-84da-acc0872cd88e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>A comma separated list of the tags you wish to associate with the subscriber (i.e.: \"Staff,Security\".)</p>\n","key":"tags","type":"text","value":"{{tags}}"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tags/","description":"<p>The subscriber_id is passed in the URL to add the list of tags to this subscriber's account. </p>\n<p>(See \"<a href=\"https://support.omnilert.com/hc/en-us/articles/115009551227-Tags\">Tags</a>\")</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","tags",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e6c140f-3556-478b-84da-acc0872cd88e"},{"name":"Subscriber - Create Email","id":"2a890f1b-2281-096a-802c-d7b2cfeff29f","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"{{subscriber_new_email}}","description":"<p>The subscriber's new email address to add. <strong>(required)</strong></p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/email/","description":"<p>The <code>subscriber_id</code> is passed in the URI to create the new email for that subscriber. The new email device will be added to Omnilert as <em>unvalidated</em>. </p>\n<p><strong>Note:</strong> Upon creation, the new email device will be sent a validation message with instructions on how the subscriber can validate their email address. The subscriber must validate their email address to receive alerts via email.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","email",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"f59df267-ff9e-4c98-88c0-83a4b3ad67db","name":"Subscriber - Create Email","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"{{subscriber_new_email}}","description":"The subscriber's new email address to add.","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/email/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1695","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:13:10 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"449","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            },\n            {\n                \"id\": \"28685488\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40043845\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"5555555555\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17146434\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"2a890f1b-2281-096a-802c-d7b2cfeff29f"},{"name":"Subscriber - Create SMS","id":"f21eff99-de6c-077d-0161-7ff24df90c52","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"phone","value":"{{subscriber_new_sms_number}}","description":"<p>The new SMS number you wish to add for this subscriber. <strong>(required)</strong></p>\n","type":"text"},{"key":"carrier_id","value":"{{subscriber_new_carrier_id}}","description":"<p>The id for the carrier you wish to assign the new SMS number to. Defaults to \"0\".</p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/sms/","description":"<p>The <code>subscriber_id</code> is passed in the URI to create the new SMS number for that subscriber. The new SMS device will be added to Omnilert as <em>unvalidated</em>. <br /><br /></p>\n<p><strong>Note:</strong> The new device will be sent a validation message with instructions on how the subscriber can validate their number via text message. The subscriber will need to reply to the validation text. As such, the carrier selected must support shortcode SMS. Typically, this includes major US carriers. If you are unsure of the carrier to select, use \"0\" (Default) for the best results.\n<br />\nReturns JSON content with full subscriber record upon success.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","sms",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"d83c0789-f545-f0be-d9e2-915ccc8107e3","name":"Subscriber - Create SMS","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"phone","value":"{{subscriber_new_sms_number}}","description":"The new SMS number you wish to add for this subscriber.","type":"text"},{"key":"carrier_id","value":"{{subscriber_new_carrier_id}}","description":"The id for the carrier you wish to assign the new SMS number to. Defaults to \"0\".","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/sms/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1993","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:14:12 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"395","body":"{\n    \"id\": \"51729284\",\n    \"username\": \"jdoe\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"0000-00-00\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"\",\n    \"tags\": null,\n    \"groups\": \"South Campus\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"33641287\",\n                \"user_id\": \"51729284\",\n                \"email\": \"jdoe@sample.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"43871836\",\n                \"user_id\": \"51729284\",\n                \"phone\": \"2125551234\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"0\",\n                \"active_status\": \"0\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"18843328\",\n                \"user_id\": \"51729284\",\n                \"number\": \"2125551234\",\n                \"active_status\": \"1\"\n            }\n        ]\n    }\n}"}],"_postman_id":"f21eff99-de6c-077d-0161-7ff24df90c52"},{"name":"Subscriber - Create TTY","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"subscriber_tty_number\", \"7033715499\");"]}}],"id":"97f6bb64-6da4-343c-9ea4-297d4542f91d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_tty_number}}","description":"<p>The new TTY number you wish to add for this subscriber. <strong>(required)</strong></p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/","description":"<p>The <code>subscriber_id</code> is passed in the URI to create the new TTY number for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","tty",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"0c6cfc0c-f816-1fca-5884-548f4880fa60","name":"Subscriber - Create TTY","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_tty_number}}","description":"The new TTY number you wish to add for this subscriber.","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2405","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:15:56 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            },\n            {\n                \"id\": \"28685488\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40043845\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"5555555555\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            },\n            {\n                \"id\": \"40043959\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"999999999\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17146434\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"active_status\": \"1\"\n            },\n            {\n                \"id\": \"17146540\",\n                \"user_id\": \"50955133\",\n                \"number\": \"9999999999\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            },\n            {\n                \"id\": \"561\",\n                \"user_id\": \"50955133\",\n                \"number\": \"7033715499\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"97f6bb64-6da4-343c-9ea4-297d4542f91d"},{"name":"Subscriber - Create Voice","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"subscriber_voice_number\", \"7032606003\");"]}}],"id":"6794fe03-8f48-60c4-07aa-688cddf6a563","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_voice_number}}","description":"<p>The new voice number you wish to add for this subscriber. <strong>(required)</strong></p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/voice/","description":"<p>Adds a phone number to a subscriber for Voice messaging services from Omnilert. </p>\n<p>The <code>subscriber_id</code> is passed in the URI to create the new voice number for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","voice",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"3da9bf54-4f4d-6ed5-52e9-bc3ae3c1716e","name":"Subscriber - Create Voice","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_new_voice_number}}","description":"The new voice number you wish to add for this subscriber.","type":"text"}]},"url":"https://omniengineapi.omnilert.net/api/v2/subscribers/{{subscriber_id}}/voice/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1642","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 30 Oct 2017 17:47:53 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u6","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"omniengineapi.omnilert.net","path":"/","secure":false,"value":"ri98mje4ejo3tbtidh2n5iad72","key":"OMNISESSION"}],"responseTime":"268","body":" {\n    \"id\": \"50949579\",\n    \"username\": \"apidemosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"0000-00-00\",\n    \"firstname\": \"John\",\n    \"lastname\": \"Doe\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de\",\n    \"tags\": \"Staff,Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28663376\",\n                \"user_id\": \"50949579\",\n                \"email\": \"no-reply@omnilert.net\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40024369\",\n                \"user_id\": \"50949579\",\n                \"phone\": \"999999999\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17120685\",\n                \"user_id\": \"50949579\",\n                \"number\": \"5555551212\",\n                \"active_status\": \"1\"\n            },\n            {\n                \"id\": \"17121935\",\n                \"user_id\": \"50949579\",\n                \"number\": \"9999999999\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"555\",\n                \"user_id\": \"50949579\",\n                \"number\": \"5555551212\",\n                \"validated\": \"1\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"6794fe03-8f48-60c4-07aa-688cddf6a563"},{"name":"Update Subscriber Detail","event":[{"listen":"prerequest","script":{"id":"905851ce-713e-4274-bac7-12fdcb9431ab","exec":["pm.environment.set(\"subscriber_update_username\", \"demosubscriber\");","","pm.environment.set(\"subscriber_update_password\", \"newpassword2\");","","pm.environment.set(\"subscriber_update_firstname\", \"Joe\");","","pm.environment.set(\"subscriber_update_lastname\", \"Subscriber\");","","pm.environment.set(\"subscriber_update_expiration_date\", \"2018-10-31\");","","pm.environment.set(\"subscriber_update_exclude_from_all_users\", \"1\");","","pm.environment.set(\"subscriber_update_preferred_languages\", \"en,de\");","","pm.environment.set(\"subscriber_update_tags\", \"First Responders,Security\");","","pm.environment.set(\"subscriber_update_groups\", \"Closings,Weather Alerts\");"],"type":"text/javascript"}}],"id":"4babb882-caa1-227a-af90-8702bf3acc27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{subscriber_update_username}}","description":"<p>Subscriber's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@).</p>\n","type":"text"},{"key":"password","value":"{{subscriber_update_password}}","description":"<p>The new password you wish to set for this subscriber.</p>\n","type":"text"},{"key":"firstname","value":"{{subscriber_update_firstname}}","description":"<p>Subscriber's first name.</p>\n","type":"text"},{"key":"lastname","value":"{{subscriber_update_lastname}}","description":"<p>Subscriber's last name</p>\n","type":"text"},{"key":"account_expiration_date","value":"{{subscriber_update_expiration_date}}","description":"<p>Account expiration date for subscriber. Format as <code>YYYY-MM-DD</code> or <code>0000-00-00</code> for no expiration date.</p>\n","type":"text"},{"key":"exclude_from_all_users","value":"{{subscriber_update_exclude_from_all_users}}","description":"<p>Defaults to ‘0’. Set to a ‘1’ to have the subscriber NOT get messages when a message is sent to ‘ALL SUBSCRIBERS’.</p>\n","type":"text"},{"key":"preferred_languages","value":"{{subscriber_update_preferred_languages}}","description":"<p>A comma seperated list of the subscribers preferred languages (i.e.: \"en,de\".)</p>\n","type":"text"},{"key":"tags","value":"{{subscriber_update_tags}}","description":"<p>A comma seperated list of the tags associated to the subscriber (i.e.: \"Staff, Security\".)</p>\n","type":"text"},{"key":"groups","value":"{{subscriber_update_groups}}","description":"<p>A comma seperated list of all groups you want the subscriber to be associated with (i.e.: \"Closings, Weather Alerts\".)</p>\n","type":"text"},{"key":"access_level","value":"{{subscriber_access_level}}","description":"<p>Determines the \"Active\" flag for the subscriber record in Omnilert. </p>\n<p>1= YES, 0=NO </p>\n<p>(Set to \"0\" to deactivate a subscriber's account without deleting it.)</p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/","description":"<p>The <code>subscriber_id</code> is passed in the URL to update the detail for that subscriber.</p>\n<p>This command is typically used to update groups/tags, name information, or other details in the target Subscriber's account.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"6dbab81f-a5b0-a01d-a44c-deea8b4f08d0","name":"Update Subscriber Detail","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{subscriber_update_username}}","description":"Subscriber's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@).","type":"text"},{"key":"password","value":"{{subscriber_update_password}}","description":"The new password you wish to set for this subscriber.","type":"text"},{"key":"firstname","value":"{{subscriber_update_firstname}}","description":"Subscriber's first name.","type":"text"},{"key":"lastname","value":"{{subscriber_update_lastname}}","description":"Subscriber's last name","type":"text"},{"key":"account_expiration_date","value":"{{subscriber_update_expiration_date}}","description":"Account expiration date for subscriber. Format as `YYYY-MM-DD` or `0000-00-00` for no expiration date.","type":"text"},{"key":"exclude_from_all_users","value":"{{subscriber_update_exclude_from_all_users}}","description":"Defaults to ‘0’. Set to a ‘1’ to have the subscriber NOT get messages when a message is sent to ‘ALL SUBSCRIBERS’.","type":"text"},{"key":"preferred_languages","value":"{{subscriber_update_preferred_languages}}","description":"A comma seperated list of the subscribers preferred languages (i.e.: \"en,de\".)","type":"text"},{"key":"tags","value":"{{subscriber_update_tags}}","description":"A comma seperated list of the tags associated to the subscriber (i.e.: \"Staff, Security\".)","type":"text"},{"key":"groups","value":"{{subscriber_update_groups}}","description":"A comma seperated list of all groups you want the subscriber to be associated with (i.e.: \"Closings, Weather Alerts\".)","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"280","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:43:31 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"486","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\"\n}"}],"_postman_id":"4babb882-caa1-227a-af90-8702bf3acc27"},{"name":"Update Subscriber - Update Email","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["28667130"]}}],"id":"d85b669e-f43f-808f-6174-56e0c23fa499","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"{{subscriber_email_new}}","type":"text","description":"<p>The new email for the subscriber. <strong>(required)</strong></p>\n"},{"key":"old_email","value":"{{subscriber_email_old}}","type":"text","description":"<p>The old email address you are replacing for this subscriber. <strong>(required)</strong></p>\n"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/email/{{subscriber_email_id}}/","description":"<p>Update an existing email record for a subscriber. The subscriber will need to validate a new email address.</p>\n<p>The <code>subscriber_id</code> and the <code>device_id</code> is passed in the URL to update the email for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","email","{{subscriber_email_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"ad3cfb26-9288-2072-1814-2111ad2efdf5","name":"Update Subscriber - Update Email","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"{{subscriber_email_new}}","type":"text","description":"The new email for the subscriber."},{"key":"old_email","value":"{{subscriber_email_old}}","type":"text","description":"The old email address you are replacing for this subscriber."}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/email/{{subscriber_email_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"931","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:47:12 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"393","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"9999999999\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"d85b669e-f43f-808f-6174-56e0c23fa499"},{"name":"Update Subscriber - Update SMS","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"subscriber_sms_id\", \"40040518\");","","pm.environment.set(\"subscriber_sms_new\", \"7033715503\");","","pm.environment.set(\"subscriber_sms_old\", \"7033715499\");"]}}],"id":"4f6cf9ba-d9ad-5d7d-a435-0f6cc21b85ee","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"phone","value":"{{subscriber_sms_new}}","type":"text","description":"<p>The new SMS number for this subsrciber. <strong>(required)</strong></p>\n"},{"key":"old_phone","value":"{{subscriber_sms_old}}","type":"text","description":"<p>The old SMS number you are replacing for this subscriber. <strong>(required)</strong></p>\n"},{"key":"carrier_id","value":"{{subscriber_carrier_id}}","description":"<p>The id for the carrier you wish to assign the new SMS number to. Defaults to \"0\".</p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/sms/{{subscriber_sms_id}}/","description":"<p>Update an existing mobile number (text messaging) for the subscriber. (The subscvriber will then need to validate a new phone number.)</p>\n<p>In most cases, it's preferable to delete the old number and then add a new one.</p>\n<p>The <code>subscriber_id</code> and the <code>device_id</code> is passed in the URL to update the SMS device for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","sms","{{subscriber_sms_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"8910fefa-5254-a8ed-d536-b445e70fe3d3","name":"Update Subscriber - Update SMS","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"phone","value":"{{subscriber_sms_new}}","type":"text","description":"The new SMS number for this subsrciber."},{"key":"old_phone","value":"{{subscriber_sms_old}}","type":"text","description":"The old SMS number you are replacing for this subscriber."}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/sms/{{subscriber_sms_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1465","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:53:29 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"400","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40043845\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"5555555555\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17146434\",\n                \"user_id\": \"50955133\",\n                \"number\": \"9999999999\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"9999999999\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"4f6cf9ba-d9ad-5d7d-a435-0f6cc21b85ee"},{"name":"Update Subscriber - Update Voice","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"subscriber_voice_number_old\", \"7032606003\");","","pm.environment.set(\"subscriber_voice_number_new\", \"7032606004\");","","pm.environment.set(\"subscriber_voice_id\", \"17137348\");"]}}],"id":"3b23ca4e-b485-0c03-e278-d771c9172b9e","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_voice_number_new}}","description":"<p>The new voice number for this subscriber. <strong>(required)</strong></p>\n","type":"text"},{"key":"old_number","value":"{{subscriber_voice_number_old}}","description":"<p>The old voice phone number you are replacing for this subscriber. <strong>(required)</strong></p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/voice/{{subscriber_voice_id}}/","description":"<p>Update an existing voice calling phone number for the subscriber. </p>\n<p>The <code>subscriber_id</code> and the <code>device_id</code> is passed in the URL to update the voice number for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","voice","{{subscriber_voice_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"40b941c2-71f0-35bf-764a-5e00b22a8a68","name":"Update Subscriber - Update Voice","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_voice_number_new}}","description":"The new voice number for this subscriber.","type":"text"},{"key":"old_number","value":"{{subscriber_voice_number_old}}","description":"The old voice phone number you are replacing for this subscriber.","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/voice/{{subscriber_voice_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1465","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:06:59 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"268","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40043845\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"5555555555\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17146434\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"9999999999\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"3b23ca4e-b485-0c03-e278-d771c9172b9e"},{"name":"Update Subscriber - Update TTY","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"subscriber_tty_number_old\", \"7032606003\");","","pm.environment.set(\"subscriber_tty_number_new\", \"7032606004\");","","pm.environment.set(\"subscriber_tty_id\", \"559\");"]}}],"id":"0997af22-63b8-9f48-b9de-1b2aff57d6f0","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_tty_number_new}}","description":"<p>The new TTY number for this subscriber. <strong>(required)</strong></p>\n","type":"text"},{"key":"old_number","value":"{{subscriber_tty_number_old}}","description":"<p>The old voice TTY number you are replacing for this subscriber. <strong>(required)</strong></p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/{{subscriber_tty_id}}/","description":"<p>The <code>subscriber_id</code> and the <code>device_id</code> is passed in the URL to update the TTY number for that subscriber.</p>\n","urlObject":{"protocol":"https","path":["v2","subscribers","{{subscriber_id}}","tty","{{subscriber_tty_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"16373788-05ea-ca55-8d39-aa74089870ed","name":"Update Subscriber - Update TTY","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"number","value":"{{subscriber_tty_number_new}}","description":"The new TTY number for this subscriber.","type":"text"},{"key":"old_number","value":"{{subscriber_tty_number_old}}","description":"The old voice TTY number you are replacing for this subscriber.","type":"text"}]},"url":"https://api.omnilert.net/v2/subscribers/{{subscriber_id}}/tty/{{subscriber_tty_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1465","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:09:34 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"373","body":" {\n    \"id\": \"50955133\",\n    \"username\": \"demosubscriber\",\n    \"validated\": \"1\",\n    \"access_level\": \"1\",\n    \"account_expiration_date\": \"2020-10-31\",\n    \"firstname\": \"Demo\",\n    \"lastname\": \"Subscriber\",\n    \"deleted\": \"0\",\n    \"optout_date\": \"0000-00-00 00:00:00\",\n    \"preferred_languages\": \"en,de,sv\",\n    \"tags\": \"Security,First Responders\",\n    \"groups\": \"Closings,Weather Alerts\",\n    \"devices\": {\n        \"email\": [\n            {\n                \"id\": \"28685071\",\n                \"user_id\": \"50955133\",\n                \"email\": \"email@domainname.com\",\n                \"validation_status\": \"-1\",\n                \"active_status\": \"0\"\n            }\n        ],\n        \"sms\": [\n            {\n                \"id\": \"40043845\",\n                \"user_id\": \"50955133\",\n                \"phone\": \"5555555555\",\n                \"carrier_id\": \"0\",\n                \"validation_status\": \"1\",\n                \"active_status\": \"1\",\n                \"carrier_name\": \"Default\"\n            }\n        ],\n        \"voice\": [\n            {\n                \"id\": \"17146434\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"active_status\": \"1\"\n            }\n        ],\n        \"tty\": [\n            {\n                \"id\": \"560\",\n                \"user_id\": \"50955133\",\n                \"number\": \"5555555555\",\n                \"validated\": \"0\",\n                \"active\": \"1\",\n                \"deleted\": \"0\"\n            }\n        ]\n    }\n}"}],"_postman_id":"0997af22-63b8-9f48-b9de-1b2aff57d6f0"}],"id":"de881640-609b-437b-8982-f0ca1022504c","description":"<p>Use the Subscriber commands to edit SUBSCRIBER data in Omnilert.</p>\n<p>Subscriber management is the primary purpose of this API. <a href=\"https://support.omnilert.com/hc/en-us/articles/115007725867-Subscribers\"><strong>Subscribers</strong></a> are the recipients of your outgoing Omnilert messages. </p>\n","event":[{"listen":"prerequest","script":{"id":"6942a40c-e379-4ff2-8a7c-f56a7f153304","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d146972b-43eb-4ece-b615-156da3cc1e15","type":"text/javascript","exec":[""]}}],"_postman_id":"de881640-609b-437b-8982-f0ca1022504c"},{"name":"Groups ","item":[{"name":"Delete Group","id":"9b6384da-3ea5-4b9c-97a3-2922b39c726b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/","description":"<p>Removes a Group from the Omnilert account. Deleting a group disbands a grouping of subscribers from the system. The group will be removed from any subscribers' records automatically. It does not delete subscriber records or devices.</p>\n<p>Pass the <code>group_id</code> of the group to be removed in the URL as indicated.</p>\n<p>Returns <code>204 No Content</code> on success.</p>\n<p><strong>Note:</strong> Deletion is permanent. There is no \"undo\" for deleted grouping data.</p>\n","urlObject":{"protocol":"https","path":["v2","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"1cca6a3a-a82b-41ec-90b4-9da45d1d020e","name":"Delete Group","originalRequest":{"method":"DELETE","header":[{"description":"Account key","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"API username","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/groups/3372133"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 17 Jan 2020 22:40:29 GMT"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9b6384da-3ea5-4b9c-97a3-2922b39c726b"},{"name":"Group Detail","id":"00c9714e-63bf-a198-ef73-57214c0b7231","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/","description":"<p>Retrieves a JSON array of a specific group with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the group record.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>The name of the group.</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>A brief 255 charcater description of the group.</td>\n</tr>\n<tr>\n<td>group_private</td>\n<td>Will return a \"1\" for private or a \"0\" for public.</td>\n</tr>\n<tr>\n<td>group_default</td>\n<td>Will return a \"1\" for default group or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td>The mobile opt-in keyword being used for the group (i.e.: \"MYGROUP\".)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>group_id</code> is passed in the URL to retrieve the detail for that group.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"4988e795-5858-0d2f-58a8-ebd7cf196b7d","name":"Group Detail","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"197","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:31:22 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"112","body":" {\n    \"id\": \"2355178\",\n    \"group_name\": \"Weather Alerts\",\n    \"group_description\": \"Get updates on the weather.\",\n    \"group_private\": \"0\",\n    \"group_default\": \"0\",\n    \"keyword\": \"apiweather\"\n}"}],"_postman_id":"00c9714e-63bf-a198-ef73-57214c0b7231"},{"name":"All Groups","id":"96b9acf8-93e5-4f9b-8b65-b88ccfb78fd0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username  </p>\n"}],"url":"https://api.omnilert.net/v2/groups/","description":"<p>Retrieves a JSON array of all the groups (public and private) your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the group record.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>The name of the group.</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>A brief 255 character description of the group.</td>\n</tr>\n<tr>\n<td>group_private</td>\n<td>Will return a \"1\" for private or a \"0\" for public.</td>\n</tr>\n<tr>\n<td>group_default</td>\n<td>Will return a \"1\" for default group or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td>The mobile opt-in keyword being used for the group (i.e.: \"MYPUBLICGROUP\".)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","groups",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"5bd927cc-1605-4f4d-a94d-cc4167fe9c0d","name":"All Groups","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username  "}],"url":"https://api.omnilert.net/v2/groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"421","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:34:50 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" [\n    {\n        \"id\": \"2362174\",\n        \"group_name\": \"Executives\",\n        \"group_description\": \"C-Level Executive Team\",\n        \"group_private\": \"1\",\n        \"group_default\": \"0\",\n        \"keyword\": null\n    },\n    {\n        \"id\": \"2141475\",\n        \"group_name\": \"South Campus Faculty and Students\",\n        \"group_description\": \"\",\n        \"group_private\": \"0\",\n        \"group_default\": \"1\",\n        \"keyword\": null\n    },\n    {\n        \"id\": \"2157790\",\n        \"group_name\": \"East Campus\",\n        \"group_description\": \"East Campus Faculty and Students\",\n        \"group_private\": \"0\",\n        \"group_default\": \"1\",\n        \"keyword\": null\n    },\n    {\n        \"id\": \"2384444\",\n        \"group_name\": \"Weather Notices\",\n        \"group_description\": \"Weather Alert Public Group.\",\n        \"group_private\": \"0\",\n        \"group_default\": \"1\",\n        \"keyword\": \"weatheralerts\"\n    }\n]"}],"_postman_id":"96b9acf8-93e5-4f9b-8b65-b88ccfb78fd0"},{"name":"Private Groups","id":"0b19332b-7bc2-e3b6-6504-8650b839ac3b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username  </p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/private/","description":"<p>Retrieves a JSON array of all the <em>private</em> groups on your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the group record.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>The name of the group.</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>A brief 255 character description of the group.</td>\n</tr>\n<tr>\n<td>group_private</td>\n<td>Will return a \"1\" for private or a \"0\" for public.</td>\n</tr>\n<tr>\n<td>group_default</td>\n<td>Will return a \"1\" for default group or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td>The mobile opt-in keyword being used for the group (i.e.: \"MYPRIVATEGROUP\".)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","groups","private",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"d9954985-7137-1cbe-f90b-16d07c6afc1d","name":"Private Groups","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username  "}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/private/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"421","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:34:50 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"134","body":" [\n    {\n        \"id\": \"2362174\",\n        \"group_name\": \"Executives\",\n        \"group_description\": \"C-Level\",\n        \"group_private\": \"1\",\n        \"group_default\": \"0\",\n        \"keyword\": null\n    },\n    {\n        \"id\": \"2384645\",\n        \"group_name\": \"New API Group\",\n        \"group_description\": \"Private API Group.\",\n        \"group_private\": \"1\",\n        \"group_default\": \"1\",\n        \"keyword\": \"apiprivate\"\n    }\n]"}],"_postman_id":"0b19332b-7bc2-e3b6-6504-8650b839ac3b"},{"name":"Public Groups","id":"15f7c2da-4d46-32b1-4b27-66d7d3253020","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API  username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/public/","description":"<p>Retrieves a JSON array of all the <em>public</em> groups on your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the group record.</td>\n</tr>\n<tr>\n<td>group_name</td>\n<td>The name of the group.</td>\n</tr>\n<tr>\n<td>group_description</td>\n<td>A brief 255 character description of the group.</td>\n</tr>\n<tr>\n<td>group_private</td>\n<td>Will return a \"1\" for private or a \"0\" for public.</td>\n</tr>\n<tr>\n<td>group_default</td>\n<td>Will return a \"1\" for default group or a \"0\" otherwise.</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td>The mobile opt-in keyword being used for the group (i.e.: \"MYPUBLICGROUP\".)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","groups","public",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"585d2475-cde0-ea74-11ef-36bfdd13b29a","name":"Public Groups","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API  username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/groups/public/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"464","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:35:09 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"118","body":" [\n    {\n        \"id\": \"2355178\",\n        \"group_name\": \"Weather Alerts\",\n        \"group_description\": \"Get updates on the weather.\",\n        \"group_private\": \"0\",\n        \"group_default\": \"0\",\n        \"keyword\": \"apiweather\"\n    },\n    {\n        \"id\": \"2355179\",\n        \"group_name\": \"Closings\",\n        \"group_description\": \"Get updates on facility closures.\",\n        \"group_private\": \"0\",\n        \"group_default\": \"0\",\n        \"keyword\": \"apiclosures\"\n    }\n]"}],"_postman_id":"15f7c2da-4d46-32b1-4b27-66d7d3253020"},{"name":"Groups - Add Group","event":[{"listen":"prerequest","script":{"id":"0f6504e8-d55b-440e-9df0-e3600ec6acce","exec":[""],"type":"text/javascript"}}],"id":"306b5bbe-0cdc-400a-85b7-d838eb52da14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>Text name for the new group. [REQUIRED]</p>\n","key":"group_name","type":"text","value":"{{group_name}}"},{"key":"group_description","value":"{{group_description}}","description":"<p>Text string description for the new group.</p>\n","type":"text"},{"key":"group_private","value":"{{group_private}}","description":"<p>Sets if new group is 'public' or 'private'. Boolean value (1 = Private, 0= Public)</p>\n","type":"text"},{"key":"group_default","value":"{{group_default}}","description":"<p>Sets if group is a 'default' group. (1=Yes, 0=No)</p>\n","type":"text"},{"key":"group_keyword","value":"{{group_keyword}}","description":"<p>Keyword associated with this group. Used to make joining groups easier via SMS.</p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/groups/","description":"<p>Adds a new Group to the account. Groups must exist before subscribers can be added to them.</p>\n<p>Requires a new <code>group_name</code> be provided in the POST body.\n<br /><br />\n<strong>Note:</strong> Group names must be unique within the account.</p>\n","urlObject":{"protocol":"https","path":["v2","groups",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"ee45ef0c-9f3b-4fd4-aa8e-781e4ea2a0ff","name":"Groups - Add New Group","originalRequest":{"method":"POST","header":[{"description":"Account key","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"API username","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"Text name for the new group. [REQUIRED]","key":"group_name","type":"text","value":"{{group_new_name}}"},{"key":"group_description","value":"{{group_description}}","description":"Text string description for the new group.","type":"text"},{"key":"group_private","value":"{{group_private}}","description":"Sets if new group is 'public' or 'private'. Boolean value (1 = Private, 0= Public)","type":"text"},{"key":"group_default","value":"{{group_default}}","description":"Sets if group is a 'default' group. (1=Yes, 0=No)","type":"text"},{"key":"group_keyword","value":"{{group_keyword}}","description":"Keyword associated with this group. Used to make joining groups easier via SMS.","type":"text"}]},"url":"https://api.omnilert.net/v2/groups/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Content-Type","value":"application/json"},{"key":"Date","value":"Fri, 17 Jan 2020 22:35:06 GMT"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Content-Length","value":"171"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3372132\",\n    \"group_name\": \"Sample Campus\",\n    \"group_description\": \"Sample Campus Notification Group\",\n    \"group_private\": \"0\",\n    \"group_default\": \"0\"\n}"}],"_postman_id":"306b5bbe-0cdc-400a-85b7-d838eb52da14"},{"name":"Groups - Update Group","event":[{"listen":"prerequest","script":{"id":"0f6504e8-d55b-440e-9df0-e3600ec6acce","exec":[""],"type":"text/javascript"}}],"id":"0eb3e25d-7e6c-4382-a93f-f1dafd6aa852","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>Text name for the group. [REQUIRED]</p>\n","key":"group_name","type":"text","value":"{{group_name}}"},{"description":"<p>Text string description for the group.</p>\n","key":"group_description","type":"text","value":"{{group_description}}"},{"description":"<p>Sets if  group is 'public' or 'private'. Boolean value (1 = Private, 0= Public)</p>\n","key":"group_private","type":"text","value":"{{group_private}}"},{"description":"<p>Sets if group is a 'default' group. (1=Yes, 0=No)</p>\n","key":"group_default","type":"text","value":"{{group_default}}"},{"description":"<p>Keyword associated with this group. Used to make joining groups easier via SMS.</p>\n","key":"group_keyword","type":"text","value":"{{group_keyword}}"}]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/","description":"<p>Updates an existing Group.</p>\n<p>Include the <code>group_id</code> of the desired group in the URL as indicated.</p>\n<p>Also send along the request variables of the fields you wish to update, if you are not updating a field then do not include that variable in your PUT request.</p>\n","urlObject":{"protocol":"https","path":["v2","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"3e916e48-6a68-4be1-be10-f501aa253390","name":"Groups - Update Group","originalRequest":{"method":"PUT","header":[{"description":"Account key","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"API username","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"Text name for the new group. [REQUIRED]","key":"group_name","type":"text","value":"{{group_name}}"},{"description":"Text string description for the new group.","key":"group_description","type":"text","value":"{{group_description}}"},{"description":"Sets if new group is 'public' or 'private'. Boolean value (1 = Private, 0= Public)","key":"group_private","type":"text","value":"{{group_private}}"},{"description":"Sets if group is a 'default' group. (1=Yes, 0=No)","key":"group_default","type":"text","value":"{{group_default}}"},{"description":"Keyword associated with this group. Used to make joining groups easier via SMS.","key":"group_keyword","type":"text","value":"{{group_keyword}}"}]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"2162197\",\n    \"group_name\": \"Campus Parking Alerts\",\n    \"group_description\": \"Notices about parking lot changes\",\n    \"group_private\": \"0\",\n    \"group_default\": \"1\",\n    \"keyword\": \"parking\"\n}"}],"_postman_id":"0eb3e25d-7e6c-4382-a93f-f1dafd6aa852"}],"id":"6ee46fe9-b681-4072-a4e0-d454f05c99dc","description":"<p>In Omnilert, <a href=\"https://support.omnilert.com/hc/en-us/articles/115010146947-Groups\">Groups</a> are used to send targeted messages to subsets of Subscribers within your Omnilert account. </p>\n<p>To assign groups to individual subscribers, use the <a href=\"https://api.omnilert.com/?version=latest#f298a196-ac65-4af8-bf43-7fc72a2fff3b\">Add Subscriber to Group</a> command.</p>\n","event":[{"listen":"prerequest","script":{"id":"312ba887-3f9e-4ad7-9c46-e60b95e76041","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"72f3f9e6-cbb4-4539-9abe-2929f4a88d9f","type":"text/javascript","exec":[""]}}],"_postman_id":"6ee46fe9-b681-4072-a4e0-d454f05c99dc"},{"name":"Admins","item":[{"name":"Delete Admin ","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"admin_id\", \"325568\");"]}}],"id":"fd382256-6f83-e20e-2ddc-6c0799d2c11b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/","description":"<p>The <code>admin_id</code> is passed in the URL to delete an admin. </p>\n<p>Once deleted, the admin account is removed and that admin can no longer access the Omnilert administrator's web portal.</p>\n","urlObject":{"protocol":"https","path":["v2","admins","{{admin_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd382256-6f83-e20e-2ddc-6c0799d2c11b"},{"name":"Delete Admin From Group","id":"66031a6e-d5aa-fdae-a40f-863c24983d13","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/groups/{{group_id}}/","description":"<p>The <code>admin_id</code> and the <code>group_id</code> are passed in the URL to remove that admin from the group.</p>\n<p>This will remove the group association for that administrator account. <em>(Neither the admin account nor the group itself are removed from the Omnilert system.)</em></p>\n","urlObject":{"protocol":"https","path":["v2","admins","{{admin_id}}","groups","{{group_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"66031a6e-d5aa-fdae-a40f-863c24983d13"},{"name":"Admins","id":"754acaf0-9d57-7b2e-049a-be7ebca2cd62","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"url":"https://api.omnilert.net/v2/admins/","description":"<p>Retrieves a JSON array of all the administrators on your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the admin record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The admin's username.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The admin's email address.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>The admin's job title.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The admin's phone number</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The admin's first name</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The admin's last name</td>\n</tr>\n<tr>\n<td>role</td>\n<td>The admin's access role in your account (i.e.: \"Content admin\".)</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>A comma seperated list of the groups the admin has been associated with (i.e.: \"Weather Alerts,Closings\".)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","admins",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"5aa6da92-fab3-e8bf-8977-9f27d9c66175","name":"Admins","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"url":"https://api.omnilert.net/v2/admins/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"591","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:24:28 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"166","body":"[\n    {\n        \"id\": \"999999\",\n        \"username\": \"jdoe2\",\n        \"email\": \"jdoe2@example.com\",\n        \"title\": \"\",\n        \"phone\": \"\",\n        \"firstname\": \"John\",\n        \"lastname\": \"Doe\",\n        \"role\": \"Super admin\",\n        \"groups\": \"West Campus,Bakesale, Teachers, Students\"\n    },\n    {\n        \"id\": \"924077\",\n        \"username\": \"cio\",\n        \"email\": \"cio@example.com\",\n        \"title\": \"Sample Administrator #2\",\n        \"phone\": \"8005553525\",\n        \"firstname\": \"Charles\",\n        \"lastname\": \"Xavier\",\n        \"role\": \"Account admin\",\n        \"groups\": \"East Campus,Bakesale,Security Team, X-Men\"\n    },\n    {\n        \"id\": \"934453\",\n        \"username\": \"dispatcher_1\",\n        \"email\": \"dispatch@example.com\",\n        \"title\": \"Desk Officer\",\n        \"phone\": \"2125551234\",\n        \"firstname\": \"Sam\",\n        \"lastname\": \"Sample\",\n        \"role\": \"Content Admin\",\n        \"groups\": \"West Campus,East Campus, North Campus,South Campus, Security Team\"\n    }\n]"}],"_postman_id":"754acaf0-9d57-7b2e-049a-be7ebca2cd62"},{"name":"Admin Detail","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"admin_id\", \"325691\");"]}}],"id":"b7f9aab9-ec0c-9771-2021-71e4b2179547","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/","description":"<p>Retrieves a JSON array of an administrator on your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the admin record.</td>\n</tr>\n<tr>\n<td>username</td>\n<td>The admin's username.</td>\n</tr>\n<tr>\n<td>email</td>\n<td>The admin's email address.</td>\n</tr>\n<tr>\n<td>title</td>\n<td>The admin's job title.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>The admin's phone number</td>\n</tr>\n<tr>\n<td>firstname</td>\n<td>The admin's first name</td>\n</tr>\n<tr>\n<td>lastname</td>\n<td>The admin's last name</td>\n</tr>\n<tr>\n<td>role</td>\n<td>The admin's access role in your account (i.e.: \"Content admin\".)</td>\n</tr>\n<tr>\n<td>groups</td>\n<td>A comma delimted list of the groups the admin has been associated with (i.e.: \"Weather Alerts,Closings\".)</td>\n</tr>\n</tbody>\n</table>\n</div><p>The <code>admin_id</code> is passed in the URL to retrieve the detail for that admin.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","admins","{{admin_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"4d5bd136-aa01-b397-8eae-e8239314b3f2","name":"Admin Detail","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"263","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:28:35 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"102","body":" {\n    \"id\": \"325719\",\n    \"username\": \"dispatcher\",\n    \"email\": \"Dispatch@example.com\",\n    \"title\": \"Administrator\",\n    \"phone\": \"5551234567\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"role\": \"Content admin\",\n    \"groups\": \"Closings,Weather Alerts\"\n}"}],"_postman_id":"b7f9aab9-ec0c-9771-2021-71e4b2179547"},{"name":"Create Admin","id":"c321ff02-aa17-3957-585e-b9f5e838f82e","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{admin_username}}","type":"text","description":"<p>Admin's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@). <strong>(required)</strong></p>\n"},{"key":"firstname","value":"{{admin_firstname}}","type":"text","description":"<p>The admin's first name. <strong>(required)</strong></p>\n"},{"key":"lastname","value":"{{admin_lastname}}","type":"text","description":"<p>The admin's last name. <strong>(required)</strong></p>\n"},{"key":"email","value":"{{admin_email}}","type":"text","description":"<p>The admin's email address. <strong>(required)</strong></p>\n"},{"key":"password","value":"{{admin_password}}","description":"<p>The password you wish to set for the new admin. <strong>(required)</strong></p>\n","type":"text"},{"key":"title","value":"{{admin_title}}","type":"text","description":"<p>The admin's job title.</p>\n"},{"key":"phone","value":"{{admin_phone}}","type":"text","description":"<p>The admin's phone number (i.e.: \"9999999999\".)</p>\n"},{"key":"role","value":"{{admin_role}}","type":"text","description":"<p>The admin's Omnilert 'role' (i.e.: \"Content admin\".)</p>\n"},{"key":"groups","value":"{{admin_groups}}","type":"text","description":"<p>A comma separated list of all groups the admin wil be associated with (i.e.: \"Closing, Weather Alerts\".)</p>\n"}]},"url":"https://api.omnilert.net/v2/admins/","description":"<p>Creates a new Omnilert administrator in the Omnilert account. Admins should be assigned an <a href=\"https://support.omnilert.com/hc/en-us/articles/115009817668-Admin-Roles\">Admin Role</a> which sets their administrative access rights according to that role. (If no role is set, the administrator will have full access to all features in the account.)</p>\n","urlObject":{"protocol":"https","path":["v2","admins",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"a46fc6be-f936-d537-d5c2-b1e31279a32a","name":"Create Admin","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":false}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{admin_username}}","type":"text","description":"Admin's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@)."},{"key":"firstname","value":"{{admin_firstname}}","type":"text","description":"The admin's first name"},{"key":"lastname","value":"{{admin_lastname}}","type":"text","description":"The admin's last name"},{"key":"email","value":"{{admin_email}}","type":"text","description":"The admin's email address"},{"key":"password","value":"{{admin_password}}","description":"The password you wish to set for the new admin.","type":"text"},{"key":"title","value":"{{admin_title}}","type":"text","description":"The admin's job title"},{"key":"phone","value":"{{admin_phone}}","type":"text","description":"The admin's phone number (i.e.: \"9999999999\".)"},{"key":"role","value":"{{admin_role}}","type":"text","description":"The admin's Omnilert 'role' (i.e.: \"Content admin\".)"},{"key":"groups","value":"{{admin_groups}}","type":"text","description":"A comma separated list of all groups the admin wil be associated with (i.e.: \"Closing, Weather Alerts\".)"}]},"url":"https://api.omnilert.net/v2/admins/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"263","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:27:41 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"299","body":" {\n    \"id\": \"555728\",\n    \"username\": \"jsmith\",\n    \"email\": \"jsmith@example.com\",\n    \"title\": \"Alerts Administrator\",\n    \"phone\": \"2125559999\",\n    \"firstname\": \"Jimmy\",\n    \"lastname\": \"Smith\",\n    \"role\": \"Super admin\",\n    \"groups\": \"Closings,Weather Alerts\"\n}"}],"_postman_id":"c321ff02-aa17-3957-585e-b9f5e838f82e"},{"name":"Update Admin","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"admin_id\", \"325719\");","pm.environment.set(\"admin_username\", \"myadmin\");","pm.environment.set(\"admin_firstname\", \"Some\");","pm.environment.set(\"admin_lastname\", \"Admin\");","pm.environment.set(\"admin_role\", \"Super admin\");","pm.environment.set(\"admin_email\", \"no-reply@omnilert.com\");","pm.environment.set(\"admin_password\", \"password\");","pm.environment.set(\"admin_phone\", \"9999999999\");","pm.environment.set(\"admin_groups\", \"Closings,Weather Alerts\");","pm.environment.set(\"admin_title\", \"Administrator\");"]}}],"id":"084c7723-916a-eee0-71bf-f084f9b5d7db","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{admin_username}}","type":"text","description":"<p>Admin's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@.)</p>\n"},{"key":"firstname","value":"{{admin_firstname}}","type":"text","description":"<p>The admin's first name.</p>\n"},{"key":"lastname","value":"{{admin_lastname}}","type":"text","description":"<p>The admin's last name.</p>\n"},{"key":"email","value":"{{admin_email}}","type":"text","description":"<p>The admin's email.</p>\n"},{"key":"password","value":"{{admin_password}}","type":"text","description":"<p>The new password you wish to set for this admin.</p>\n"},{"key":"title","value":"{{admin_title}}","type":"text","description":"<p>The admin's job title.</p>\n"},{"key":"phone","value":"{{admin_phone}}","type":"text","description":"<p>The admin's phone number.</p>\n"},{"key":"role","value":"{{admin_role}}","type":"text","description":"<p>The admin's role (i.e.: \"Content admin\".)</p>\n"},{"key":"groups","value":"{{admin_groups}}","type":"text","description":"<p>A comma separated list of all groups the admin is associated with (i.e.: \"Closings,Weather Alerts\".)</p>\n"}]},"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/","description":"<p>Use this command to update an existing Omnilert administrator's account's details. </p>\n<p>The <code>admin_id</code> is passed in the URL to update the detail for that admin.</p>\n","urlObject":{"protocol":"https","path":["v2","admins","{{admin_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"76182eb1-c46d-9ff9-61d2-4a8f91593010","name":"Update Admin","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{admin_username}}","type":"text","description":"Admin's username - can only contain numbers, letters (upper and lower) as well as underscore (_), period (.), dash (-) and ampersand (@.)"},{"key":"firstname","value":"{{admin_firstname}}","type":"text","description":"The admin's first name."},{"key":"lastname","value":"{{admin_lastname}}","type":"text","description":"The admin's last name."},{"key":"email","value":"{{admin_email}}","type":"text","description":"The admin's email."},{"key":"password","value":"{{admin_password}}","type":"text","description":"The new password you wish to set for this admin."},{"key":"title","value":"{{admin_title}}","type":"text","description":"The admin's job title."},{"key":"phone","value":"{{admin_phone}}","type":"text","description":"The admin's phone number."},{"key":"role","value":"{{admin_role}}","type":"text","description":"The admin's role (i.e.: \"Content admin\".)"},{"key":"groups","value":"{{admin_groups}}","type":"text","description":"A comma separated list of all groups the admin is associated with (i.e.: \"Closings,Weather Alerts\".)"}]},"url":"https://api.omnilert.net/v2/admins/{{admin_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"263","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 14:53:08 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"461","body":" {\n    \"id\": \"325719\",\n    \"username\": \"dispatcher\",\n    \"email\": \"Dispatch@example.com\",\n    \"title\": \"Administrator\",\n    \"phone\": \"5551234567\",\n    \"firstname\": \"Jane\",\n    \"lastname\": \"Doe\",\n    \"role\": \"Content admin\",\n    \"groups\": \"Closings,Weather Alerts\"\n}"}],"_postman_id":"084c7723-916a-eee0-71bf-f084f9b5d7db"}],"id":"75b66b0d-e7d2-4d71-8111-135413945d59","description":"<p><a href=\"https://support.omnilert.com/hc/en-us/articles/115009990067-Admins\">Admins</a> are the adiministrator accounts used to compose/send alerts and manage the Omnilert service for your organization.</p>\n","event":[{"listen":"prerequest","script":{"id":"8cd25b35-e548-41f4-b154-226132d1d480","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"73df964a-f55b-44b6-a485-5428de6bb01a","type":"text/javascript","exec":[""]}}],"_postman_id":"75b66b0d-e7d2-4d71-8111-135413945d59"},{"name":"Account","item":[{"name":"Delete Account Tag","id":"2e286bd2-e34f-731f-c160-807d5de1a913","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"https://api.omnilert.net/v2/tags/{{tag_id}}/","description":"<p>Use this command to delete a \"Tag\" from your account. Once removed, the tag will be removed from any/all subscribers as well. </p>\n<p><strong>Note:</strong> Deleting a tag is permanent. There is no \"undo\".</p>\n<p>The <code>tag_id</code> is passed in the URL to delete the tag.</p>\n","urlObject":{"protocol":"https","path":["v2","tags","{{tag_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e286bd2-e34f-731f-c160-807d5de1a913"},{"name":"Account Detail","id":"ae11f7b1-4e75-fc1e-b120-c11953ab2dcc","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/","description":"<p>This GET request retrieves a JSON array with your account details which contains the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Your account ID</td>\n</tr>\n<tr>\n<td>display_name</td>\n<td>How your account name is displayed in the Omnilert platform (i.e.: \"API Demo.\")</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Your provided address.</td>\n</tr>\n<tr>\n<td>address2</td>\n<td>Your provided address' secondary information such as suite number or PO box.</td>\n</tr>\n<tr>\n<td>city</td>\n<td>Your account's provided city information.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Your provided state or province information.</td>\n</tr>\n<tr>\n<td>zipcode</td>\n<td>Your provided zip or postal code.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>Your provided phone number.</td>\n</tr>\n<tr>\n<td>account_description</td>\n<td>A brief 255 character description for the account.</td>\n</tr>\n<tr>\n<td>message_from_name</td>\n<td>The provided name that your notifications will be labeled as, \"From.\"</td>\n</tr>\n<tr>\n<td>TZ</td>\n<td>The provided Timezone for your account (i.e.: \"America/New_York.\")</td>\n</tr>\n<tr>\n<td>languages</td>\n<td>The languages you offer filters for on your Omnilert account (i.e.: \"de,en,sv.\")</td>\n</tr>\n<tr>\n<td>keyword</td>\n<td>The mobile opt-in keyword you are providing your subscribers for your account (i.e.: \"MYKEYWORD.\")</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>A comma seperated list of tags that you are filtering your subscriber list by within the Omnilert platform (i.e.: \"First Responders,Executives.\") This may be helpful in prepopulating a list of tags for your subscribers to associate themselves with for your notifications.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","accounts",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"f617a59f-0ff8-e922-37a1-370f8a094d3e","name":"Account Detail","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"530","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 14:56:50 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"104","body":" {\n    \"id\": \"30345\",\n    \"display_name\": \"API Demo Account\",\n    \"address\": \"111 Main St\",\n    \"address2\": \"suite 101\",\n    \"city\": \"Springfield\",\n    \"state\": \"IL\",\n    \"zipcode\": \"22222\",\n    \"phone\": \"9999999999\",\n    \"account_description\": \"My Omnilert account description.\",\n    \"message_from_name\": \"apidemoaccount\",\n    \"TZ\": \"America\\/Indiana\\/Tell_City\",\n    \"languages\": \"en,de,sv\",\n    \"keyword\": \"apidemo\",\n    \"tags\": \"Administration,Executives,Faculty,First Responders,Human Resources,Security,Staff,Super Admins\"\n}"}],"_postman_id":"ae11f7b1-4e75-fc1e-b120-c11953ab2dcc"},{"name":"Account Tags","id":"53ae35b5-472c-063a-f384-eaa7bd72aeeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"}],"url":"https://api.omnilert.net/v2/tags/","description":"<p>Retrieves a JSON array of all the <a href=\"https://support.omnilert.com/hc/en-us/articles/115009551227-Tags\">tags</a> on your account and their associated information with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the tag record.</td>\n</tr>\n<tr>\n<td>tag</td>\n<td>The name of the tag (i.e.: \"Staff\".)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["v2","tags",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"44e74cbc-8005-4da0-b558-b708ec366bec","name":"Account Tags","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/tags/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":" [\n    {\n        \"id\": \"74\",\n        \"tag\": \"First Responders\"\n    },\n    {\n        \"id\": \"75\",\n        \"tag\": \"Executives\"\n    },\n    {\n        \"id\": \"78\",\n        \"tag\": \"Faculty\"\n    },\n    {\n        \"id\": \"79\",\n        \"tag\": \"Staff\"\n    },\n    {\n        \"id\": \"80\",\n        \"tag\": \"Security\"\n    },\n    {\n        \"id\": \"83\",\n        \"tag\": \"Administration\"\n    },\n    {\n        \"id\": \"86\",\n        \"tag\": \"Super Admins\"\n    },\n    {\n        \"id\": \"88\",\n        \"tag\": \"Human Resources\"\n    }\n]"},{"id":"8f3e5b41-b3f8-f121-f891-94956c147da8","name":"Groups","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/groups/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"882","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:30:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" [\n    {\n        \"id\": \"2355178\",\n        \"group_name\": \"Weather Alerts\",\n        \"group_description\": \"Get updates on the weather.\",\n        \"group_private\": \"0\",\n        \"group_default\": \"0\",\n        \"keyword\": \"apiweather\"\n    },\n    {\n        \"id\": \"2355179\",\n        \"group_name\": \"Closings\",\n        \"group_description\": \"Get updates on facility closures.\",\n        \"group_private\": \"0\",\n        \"group_default\": \"0\",\n        \"keyword\": \"apiclosures\"\n    },\n    {\n        \"id\": \"2362174\",\n        \"group_name\": \"Executives\",\n        \"group_description\": \"C-Level\",\n        \"group_private\": \"1\",\n        \"group_default\": \"0\",\n        \"keyword\": null\n    },\n    {\n        \"id\": \"2384645\",\n        \"group_name\": \"New API Group\",\n        \"group_description\": \"Private API Group.\",\n        \"group_private\": \"1\",\n        \"group_default\": \"1\",\n        \"keyword\": \"apiprivate\"\n    }\n]"}],"_postman_id":"53ae35b5-472c-063a-f384-eaa7bd72aeeb"},{"name":"Account Tags (Alternate)","id":"ce2d7d5b-8c97-12c8-fccd-142cce917dbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"}],"url":"https://api.omnilert.net/v2/accounts/getaccounttags/","description":"<p>Retrieves a JSON array of tags on the account that are used to label and sort Subscriber data with the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The id of tag.</td>\n</tr>\n<tr>\n<td>tag</td>\n<td>The name of the tag (i.e.: \"Staff\".)</td>\n</tr>\n</tbody>\n</table>\n</div><p>Tags also allow the senders (administrators) to filter subscribers when sending a message.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","accounts","getaccounttags",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"3ad9c73d-7271-c6b8-c94d-19f5f92ee167","name":"Tags","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/getaccounttags/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"498","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:28:19 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"131","body":" [\n    {\n        \"id\": \"74\",\n        \"tag\": \"First Responders\"\n    },\n    {\n        \"id\": \"75\",\n        \"tag\": \"Executives\"\n    },\n    {\n        \"id\": \"78\",\n        \"tag\": \"Faculty\"\n    },\n    {\n        \"id\": \"79\",\n        \"tag\": \"Staff\"\n    },\n    {\n        \"id\": \"80\",\n        \"tag\": \"Security\"\n    },\n    {\n        \"id\": \"83\",\n        \"tag\": \"Administration\"\n    },\n    {\n        \"id\": \"86\",\n        \"tag\": \"Super Admins\"\n    },\n    {\n        \"id\": \"88\",\n        \"tag\": \"Human Resources\"\n    }\n]"}],"_postman_id":"ce2d7d5b-8c97-12c8-fccd-142cce917dbc"},{"name":"Create Account Tags","event":[{"listen":"prerequest","script":{"id":"cd00bbee-545e-485e-9706-2d0abe7c6123","exec":[""],"type":"text/javascript"}}],"id":"949ce426-f3b8-5c3b-af23-84a77f70b08c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>A comma separated list of the tags you wish to create (i.e.: \"Staff,Security\".)</p>\n","key":"tags","type":"text","value":"{{tags}}"}]},"url":"https://api.omnilert.net/v2/tags/","description":"<p>Create <a href=\"https://support.omnilert.com/hc/en-us/articles/115009551227-Tags\">tags</a> within the account. Post a comma-separated list of the desired tags. </p>\n<p>Tag names must be unique. <em>(Duplicate tags are not permitted.)</em></p>\n","urlObject":{"protocol":"https","path":["v2","tags",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"8d891e66-ddf6-46e2-86e2-edc84b703bbd","name":"Create Account Tags","originalRequest":{"method":"POST","header":[{"description":"Account key","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"API username","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"A comma separated list of the tags you wish to create (i.e.: \"Staff,Security\".)","key":"tags","type":"text","value":"{{tags}}"}]},"url":"https://api.omnilert.net/v2/tags/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 23 Oct 2019 19:07:30 GMT"},{"key":"Server","value":"Apache/2.4.25 (Debian)"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, OPTIONS, DELETE, PUT"},{"key":"Access-Control-Max-Age","value":"1000"},{"key":"Access-Control-Allow-Headers","value":"cache-control, omnilert_account_key, username, Origin, Accept, Content-Type, Authorization, Access-Control-Allow-Origin"},{"key":"Content-Length","value":"225"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1857\",\n        \"tag\": \"btag 1\"\n    },\n    {\n        \"id\": \"1858\",\n        \"tag\": \"btag 2\"\n    },\n    {\n        \"id\": \"1856\",\n        \"tag\": \"btag_3\",\n        \"create_error\": \"Tag already exists\"\n    }\n]"},{"id":"db7ab76b-7441-3aa8-418c-744f45664980","name":"Create Group","originalRequest":{"method":"POST","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"group_name","value":"{{group_new_name}}","description":"Name that you want your group to be called (required).","type":"text"},{"key":"group_description","value":"{{group_new_description}}","description":"Description of your group","type":"text"},{"key":"group_private","value":"{{group_new_private}}","description":"To make private pass a ‘1’, to make public pass a ‘0’","type":"text"},{"key":"group_default","value":"{{group_new_default}}","description":"To make this group a selected default pass a ‘1’, otherwise pass a ‘0’","type":"text"},{"key":"keyword","value":"{{group_new_keyword}}","description":"Keyword associated with this group. Used to make joining groups easier via mobile opt-in (i.e.: \"MYNEWGROUP\").","type":"text"}]},"url":"https://api.omnilert.net/v2/groups/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"193","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 18:11:36 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" {\n    \"id\": 2387487,\n    \"group_name\": \"New Public Group\",\n    \"group_description\": \"My new public group.\",\n    \"group_private\": \"0\",\n    \"group_default\": \"1\",\n    \"keyword\": \"MYPUBLICGROUP\"\n}"}],"_postman_id":"949ce426-f3b8-5c3b-af23-84a77f70b08c"},{"name":"Update Account","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["pm.environment.set(\"account_display_name\", \"API Demo Account\");","","pm.environment.set(\"account_address\", \"111 Main St\");","","pm.environment.set(\"account_address2\", \"suite 101\");","","pm.environment.set(\"account_city\", \"Springfield\");","","pm.environment.set(\"account_state\", \"IL\");","","pm.environment.set(\"account_phone\", \"9999999999\");","","pm.environment.set(\"account_description\", \"My Omnilert account description.\");","","pm.environment.set(\"account_message_from_name\", \"apidemoaccount\");","","pm.environment.set(\"keyword\", \"apidemoaccount\");","","pm.environment.set(\"account_timezone\", \"America/Indiana/Tell_City\");","","pm.environment.set(\"account_zipcode\", \"22222\");","","pm.environment.set(\"account_tags\", \"Human Resources\");","","pm.environment.set(\"account_languages\", \"en,de,sv\");"]}}],"id":"89cdb0c9-6a1e-18fb-34f4-1900deecf2c7","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"display_name","value":"{{account_display_name}}","description":"<p>Display name as it appears on your account pages when accessing via the web interface.</p>\n","type":"text"},{"key":"address","value":"{{account_address}}","description":"<p>Street address for the account.</p>\n","type":"text"},{"key":"address2","value":"{{account_address2}}","description":"<p>Secondary street address for the account, such as, PO box or suite number.</p>\n","type":"text"},{"key":"city","value":"{{account_city}}","description":"<p>The account city.</p>\n","type":"text"},{"key":"state","value":"{{account_state}}","description":"<p>The account state or province.</p>\n","type":"text"},{"key":"zipcode","value":"{{account_zipcode}}","description":"<p>The account zipcode or postal code.</p>\n","type":"text"},{"key":"phone","value":"{{account_phone}}","description":"<p>The account phone number.</p>\n","type":"text"},{"key":"account_description","value":"{{account_description}}","description":"<p>A brief 255 character description of the account.</p>\n","type":"text"},{"key":"message_from_name","value":"{{account_message_from_name}}","description":"<p>The name your messages are labeled as \"From.\"</p>\n","type":"text"},{"key":"TZ","value":"{{account_timezone}}","description":"<p>The account timezone.</p>\n","type":"text"},{"key":"languages","value":"{{account_languages}}","description":"<p>The langauges you offer filters for on your Omnilert account.</p>\n","type":"text"},{"key":"keyword","value":"{{account_keyword}}","description":"<p>The mobile opt-in keyword you are providing your subscribers for your account (ie: \"MYKEYWORD.\")</p>\n","type":"text"},{"key":"tags","value":"{{account_tags}}","description":"<p>A comma delimted list of tags that you are filtering your subscriber list by within the Omnilert platform (ie: \"First Responders,Exectuves.\") This may be helpful in prepopulating a list of tags for your subscribers to associate themselves with for your notifications.</p>\n","type":"text"}]},"url":"https://api.omnilert.net/v2/accounts/{{account_id}}/","description":"<p>This method allows you to update your Omnilert account's \"<a href=\"https://support.omnilert.com/hc/en-us/articles/115008496048-System-Settings-Account-Settings\">Account Settings</a>\" details.</p>\n","urlObject":{"protocol":"https","path":["v2","accounts","{{account_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"7005b6d5-99dc-1d83-61af-d5bbaac14ceb","name":"Update Account","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"display_name","value":"{{account_display_name}}","description":"Display name as it appears on your account pages when accessing via the web interface.","type":"text"},{"key":"address","value":"{{account_address}}","description":"Street address for the account.","type":"text"},{"key":"address2","value":"{{account_address2}}","description":"Secondary street address for the account, such as, PO box or suite number.","type":"text"},{"key":"city","value":"{{account_city}}","description":"The account city.","type":"text"},{"key":"state","value":"{{account_state}}","description":"The account state or province.","type":"text"},{"key":"zipcode","value":"{{account_zipcode}}","description":"The account zipcode or postal code.","type":"text"},{"key":"phone","value":"{{account_phone}}","description":"The account phone number.","type":"text"},{"key":"account_description","value":"{{account_description}}","description":"A brief 255 character description of the account.","type":"text"},{"key":"message_from_name","value":"{{account_message_from_name}}","description":"The name your messages are labeled as \"From.\"","type":"text"},{"key":"TZ","value":"{{account_timezone}}","description":"The account timezone.","type":"text"},{"key":"languages","value":"{{account_languages}}","description":"The langauges you offer filters for on your Omnilert account.","type":"text"},{"key":"keyword","value":"{{account_keyword}}","description":"The mobile opt-in keyword you are providing your subscribers for your account (ie: \"MYKEYWORD.\")","type":"text"},{"key":"tags","value":"{{account_tags}}","description":"A comma delimted list of tags that you are filtering your subscriber list by within the Omnilert platform (ie: \"First Responders,Exectuves.\") This may be helpful in prepopulating a list of tags for your subscribers to associate themselves with for your notifications.","type":"text"}]},"url":"https://api.omnilert.net/v2/accounts/{{account_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"530","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:38:32 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"270","body":" {\n    \"id\": \"30345\",\n    \"display_name\": \"API Demo Account\",\n    \"address\": \"111 Main St\",\n    \"address2\": \"suite 101\",\n    \"city\": \"Springfield\",\n    \"state\": \"IL\",\n    \"zipcode\": \"22222\",\n    \"phone\": \"9999999999\",\n    \"account_description\": \"My Omnilert account description.\",\n    \"message_from_name\": \"apidemoaccount\",\n    \"TZ\": \"America\\/Indiana\\/Tell_City\",\n    \"languages\": \"en,de,sv\",\n    \"keyword\": \"apidemo\",\n    \"tags\": \"Administration,Executives,Faculty,First Responders,Human Resources,Security,Staff,Super Admins\"\n}"}],"_postman_id":"89cdb0c9-6a1e-18fb-34f4-1900deecf2c7"},{"name":"Update Account Tag","event":[{"listen":"prerequest","script":{"id":"83ce5f20-ff9a-4926-b9ba-0569a965b968","exec":[""],"type":"text/javascript"}}],"id":"9a1e0a68-7690-447d-b944-cbe0584fc502","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[{"description":"<p>Account key</p>\n","key":"omnilert_account_key","value":"{{omnilert_account_key}}"},{"description":"<p>API username</p>\n","key":"username","value":"{{username}}"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"description":"<p>New name that you want your tag to be called.</p>\n","key":"tag_name","type":"text","value":"{{tag_name}}"}]},"url":"https://api.omnilert.net/v2/tags/{{tag_id}}/","description":"<p>The <code>tag_id</code> is passed in the URL to update the detail for that <a href=\"https://support.omnilert.com/hc/en-us/articles/115009551227-Tags\">tag</a>.</p>\n","urlObject":{"protocol":"https","path":["v2","tags","{{tag_id}}",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"6c7a6982-d51d-7680-87d4-fdd13882fcd0","name":"Update Group","originalRequest":{"method":"PUT","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"group_name","value":"{{group_name}}","type":"text","description":"Name that you want your group to be called."},{"key":"group_description","value":"{{group_description}}","type":"text","description":"A brief 255 character description of your group."},{"key":"group_private","value":"{{group_private}}","type":"text","description":"To make private pass a \"1\", to make public pass a \"0\". Defaults to \"0\" (public.)"},{"key":"group_default","value":"{{group_default}}","type":"text","description":"To make this group a selected default pass a ‘1’, otherwise pass a ‘0’. Defaults to ‘0’ (Not a default group)"},{"key":"keyword","value":"{{group_keyword}}","type":"text","description":"Keyword associated with this group. Used to make joining groups easier via mobile opt-in."}]},"url":"https://api.omnilert.net/v2/groups/{{group_id}}/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store, no-cache, must-revalidate, post-check=0, pre-check=0","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"200","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:42:12 GMT","name":"Date","description":""},{"key":"Expires","value":"Thu, 19 Nov 1981 08:52:00 GMT","name":"Expires","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":null,"body":" {\n    \"id\": \"2384645\",\n    \"group_name\": \"Private Group\",\n    \"group_description\": \"My private group's description.\",\n    \"group_private\": \"1\",\n    \"group_default\": \"0\",\n    \"keyword\": \"apiprivate\"\n}"}],"_postman_id":"9a1e0a68-7690-447d-b944-cbe0584fc502"}],"id":"e5c8603f-22b1-4d1d-95ca-96dd76d2b98f","description":"<p>The Account commands impact settings for your Omnilert service. </p>\n","event":[{"listen":"prerequest","script":{"id":"fb63442e-2a5e-466c-866d-c2159ec47080","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"153cc051-c576-4014-b933-1289fd6c0398","type":"text/javascript","exec":[""]}}],"_postman_id":"e5c8603f-22b1-4d1d-95ca-96dd76d2b98f"},{"name":"Misc","item":[{"name":"Languages List","id":"e446efc6-ce49-3728-8add-e57eccc53109","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/getlanguagestable/","description":"<p>Retrieves a JSON array of languages you can use to your subscribers with a choice of their preferred language with following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>The code value for the language (i.e.: \"en.\")</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the language (i.e.: \"English\".)</td>\n</tr>\n</tbody>\n</table>\n</div><p>This array can be leveraged in your application to allow your subscribers to select their preferred languages even though you may not yet have your account set to filter those languages. This will allow you to store these values on the subscriber record for future use.</p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","accounts","getlanguagestable",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"78db451b-d8fb-2f1c-180a-e3356d50f7ac","name":"Languages List","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/getlanguagestable/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:28:00 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""},{"key":"transfer-encoding","value":"chunked","name":"transfer-encoding","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"79","body":" [\n    {\n        \"code\": \"ab\",\n        \"name\": \"Abkhazian\"\n    },\n    {\n        \"code\": \"aa\",\n        \"name\": \"Afar\"\n    },\n    {\n        \"code\": \"af\",\n        \"name\": \"Afrikaans\"\n    },\n    {\n        \"code\": \"ak\",\n        \"name\": \"Akan\"\n    },\n    {\n        \"code\": \"sq\",\n        \"name\": \"Albanian\"\n    },\n    {\n        \"code\": \"am\",\n        \"name\": \"Amharic\"\n    },\n    {\n        \"code\": \"ar\",\n        \"name\": \"Arabic\"\n    },\n    {\n        \"code\": \"an\",\n        \"name\": \"Aragonese\"\n    },\n    {\n        \"code\": \"hy\",\n        \"name\": \"Armenian\"\n    },\n    {\n        \"code\": \"as\",\n        \"name\": \"Assamese\"\n    },\n    {\n        \"code\": \"av\",\n        \"name\": \"Avaric\"\n    },\n    {\n        \"code\": \"ae\",\n        \"name\": \"Avestan\"\n    },\n    {\n        \"code\": \"ay\",\n        \"name\": \"Aymara\"\n    },\n    {\n        \"code\": \"az\",\n        \"name\": \"Azerbaijani\"\n    },\n    {\n        \"code\": \"bm\",\n        \"name\": \"Bambara\"\n    },\n    {\n        \"code\": \"ba\",\n        \"name\": \"Bashkir\"\n    },\n    {\n        \"code\": \"eu\",\n        \"name\": \"Basque\"\n    },\n    {\n        \"code\": \"be\",\n        \"name\": \"Belarusian\"\n    },\n    {\n        \"code\": \"bn\",\n        \"name\": \"Bengali\"\n    },\n    {\n        \"code\": \"bh\",\n        \"name\": \"Bihari\"\n    },\n    {\n        \"code\": \"bi\",\n        \"name\": \"Bislama\"\n    },\n    {\n        \"code\": \"nb\",\n        \"name\": null\n    },\n    {\n        \"code\": \"bs\",\n        \"name\": \"Bosnian\"\n    },\n    {\n        \"code\": \"br\",\n        \"name\": \"Breton\"\n    },\n    {\n        \"code\": \"bg\",\n        \"name\": \"Bulgarian\"\n    },\n    {\n        \"code\": \"my\",\n        \"name\": \"Burmese\"\n    },\n    {\n        \"code\": \"ca\",\n        \"name\": \"Catalan; Valencian\"\n    },\n    {\n        \"code\": \"km\",\n        \"name\": \"Central Khmer\"\n    },\n    {\n        \"code\": \"ch\",\n        \"name\": \"Chamorro\"\n    },\n    {\n        \"code\": \"ce\",\n        \"name\": \"Chechen\"\n    },\n    {\n        \"code\": \"ny\",\n        \"name\": \"Chichewa; Chewa; Nyanja\"\n    },\n    {\n        \"code\": \"zh\",\n        \"name\": \"Chinese\"\n    },\n    {\n        \"code\": \"cu\",\n        \"name\": \"Church Slavic; Old Slavonic; Church Slavonic; Old Bulgarian; Old Church Slavonic\"\n    },\n    {\n        \"code\": \"cv\",\n        \"name\": \"Chuvash\"\n    },\n    {\n        \"code\": \"kw\",\n        \"name\": \"Cornish\"\n    },\n    {\n        \"code\": \"co\",\n        \"name\": \"Corsican\"\n    },\n    {\n        \"code\": \"cr\",\n        \"name\": \"Cree\"\n    },\n    {\n        \"code\": \"hr\",\n        \"name\": \"Croatian\"\n    },\n    {\n        \"code\": \"cs\",\n        \"name\": \"Czech\"\n    },\n    {\n        \"code\": \"da\",\n        \"name\": \"Danish\"\n    },\n    {\n        \"code\": \"dv\",\n        \"name\": \"Divehi; Dhivehi; Maldivian\"\n    },\n    {\n        \"code\": \"nl\",\n        \"name\": \"Dutch; Flemish\"\n    },\n    {\n        \"code\": \"dz\",\n        \"name\": \"Dzongkha\"\n    },\n    {\n        \"code\": \"en\",\n        \"name\": \"English\"\n    },\n    {\n        \"code\": \"eo\",\n        \"name\": \"Esperanto\"\n    },\n    {\n        \"code\": \"et\",\n        \"name\": \"Estonian\"\n    },\n    {\n        \"code\": \"ee\",\n        \"name\": \"Ewe\"\n    },\n    {\n        \"code\": \"fo\",\n        \"name\": \"Faroese\"\n    },\n    {\n        \"code\": \"fj\",\n        \"name\": \"Fijian\"\n    },\n    {\n        \"code\": \"fi\",\n        \"name\": \"Finnish\"\n    },\n    {\n        \"code\": \"fr\",\n        \"name\": \"French\"\n    },\n    {\n        \"code\": \"ff\",\n        \"name\": \"Fulah\"\n    },\n    {\n        \"code\": \"gd\",\n        \"name\": \"Gaelic; Scottish Gaelic\"\n    },\n    {\n        \"code\": \"gl\",\n        \"name\": \"Galician\"\n    },\n    {\n        \"code\": \"lg\",\n        \"name\": \"Ganda\"\n    },\n    {\n        \"code\": \"ka\",\n        \"name\": \"Georgian\"\n    },\n    {\n        \"code\": \"de\",\n        \"name\": \"German\"\n    },\n    {\n        \"code\": \"el\",\n        \"name\": \"Greek, Modern (1453-)\"\n    },\n    {\n        \"code\": \"gn\",\n        \"name\": \"Guarani\"\n    },\n    {\n        \"code\": \"gu\",\n        \"name\": \"Gujarati\"\n    },\n    {\n        \"code\": \"ht\",\n        \"name\": \"Haitian; Haitian Creole\"\n    },\n    {\n        \"code\": \"ha\",\n        \"name\": \"Hausa\"\n    },\n    {\n        \"code\": \"he\",\n        \"name\": \"Hebrew\"\n    },\n    {\n        \"code\": \"hz\",\n        \"name\": \"Herero\"\n    },\n    {\n        \"code\": \"hi\",\n        \"name\": \"Hindi\"\n    },\n    {\n        \"code\": \"ho\",\n        \"name\": \"Hiri Motu\"\n    },\n    {\n        \"code\": \"hu\",\n        \"name\": \"Hungarian\"\n    },\n    {\n        \"code\": \"is\",\n        \"name\": \"Icelandic\"\n    },\n    {\n        \"code\": \"io\",\n        \"name\": \"Ido\"\n    },\n    {\n        \"code\": \"ig\",\n        \"name\": \"Igbo\"\n    },\n    {\n        \"code\": \"id\",\n        \"name\": \"Indonesian\"\n    },\n    {\n        \"code\": \"ia\",\n        \"name\": \"Interlingua (International Auxiliary Language Association)\"\n    },\n    {\n        \"code\": \"ie\",\n        \"name\": \"Interlingue; Occidental\"\n    },\n    {\n        \"code\": \"iu\",\n        \"name\": \"Inuktitut\"\n    },\n    {\n        \"code\": \"ik\",\n        \"name\": \"Inupiaq\"\n    },\n    {\n        \"code\": \"ga\",\n        \"name\": \"Irish\"\n    },\n    {\n        \"code\": \"it\",\n        \"name\": \"Italian\"\n    },\n    {\n        \"code\": \"ja\",\n        \"name\": \"Japanese\"\n    },\n    {\n        \"code\": \"jv\",\n        \"name\": \"Javanese\"\n    },\n    {\n        \"code\": \"kl\",\n        \"name\": \"Kalaallisut; Greenlandic\"\n    },\n    {\n        \"code\": \"kn\",\n        \"name\": \"Kannada\"\n    },\n    {\n        \"code\": \"kr\",\n        \"name\": \"Kanuri\"\n    },\n    {\n        \"code\": \"ks\",\n        \"name\": \"Kashmiri\"\n    },\n    {\n        \"code\": \"kk\",\n        \"name\": \"Kazakh\"\n    },\n    {\n        \"code\": \"ki\",\n        \"name\": \"Kikuyu; Gikuyu\"\n    },\n    {\n        \"code\": \"rw\",\n        \"name\": \"Kinyarwanda\"\n    },\n    {\n        \"code\": \"ky\",\n        \"name\": \"Kirghiz; Kyrgyz\"\n    },\n    {\n        \"code\": \"kv\",\n        \"name\": \"Komi\"\n    },\n    {\n        \"code\": \"kg\",\n        \"name\": \"Kongo\"\n    },\n    {\n        \"code\": \"ko\",\n        \"name\": \"Korean\"\n    },\n    {\n        \"code\": \"kj\",\n        \"name\": \"Kuanyama; Kwanyama\"\n    },\n    {\n        \"code\": \"ku\",\n        \"name\": \"Kurdish\"\n    },\n    {\n        \"code\": \"lo\",\n        \"name\": \"Lao\"\n    },\n    {\n        \"code\": \"la\",\n        \"name\": \"Latin\"\n    },\n    {\n        \"code\": \"lv\",\n        \"name\": \"Latvian\"\n    },\n    {\n        \"code\": \"li\",\n        \"name\": \"Limburgan; Limburger; Limburgish\"\n    },\n    {\n        \"code\": \"ln\",\n        \"name\": \"Lingala\"\n    },\n    {\n        \"code\": \"lt\",\n        \"name\": \"Lithuanian\"\n    },\n    {\n        \"code\": \"lu\",\n        \"name\": \"Luba-Katanga\"\n    },\n    {\n        \"code\": \"lb\",\n        \"name\": \"Luxembourgish; Letzeburgesch\"\n    },\n    {\n        \"code\": \"mk\",\n        \"name\": \"Macedonian\"\n    },\n    {\n        \"code\": \"mg\",\n        \"name\": \"Malagasy\"\n    },\n    {\n        \"code\": \"ms\",\n        \"name\": \"Malay\"\n    },\n    {\n        \"code\": \"ml\",\n        \"name\": \"Malayalam\"\n    },\n    {\n        \"code\": \"mt\",\n        \"name\": \"Maltese\"\n    },\n    {\n        \"code\": \"gv\",\n        \"name\": \"Manx\"\n    },\n    {\n        \"code\": \"mi\",\n        \"name\": \"Maori\"\n    },\n    {\n        \"code\": \"mr\",\n        \"name\": \"Marathi\"\n    },\n    {\n        \"code\": \"mh\",\n        \"name\": \"Marshallese\"\n    },\n    {\n        \"code\": \"mn\",\n        \"name\": \"Mongolian\"\n    },\n    {\n        \"code\": \"na\",\n        \"name\": \"Nauru\"\n    },\n    {\n        \"code\": \"nv\",\n        \"name\": \"Navajo; Navaho\"\n    },\n    {\n        \"code\": \"nd\",\n        \"name\": \"Ndebele, North; North Ndebele\"\n    },\n    {\n        \"code\": \"nr\",\n        \"name\": \"Ndebele, South; South Ndebele\"\n    },\n    {\n        \"code\": \"ng\",\n        \"name\": \"Ndonga\"\n    },\n    {\n        \"code\": \"ne\",\n        \"name\": \"Nepali\"\n    },\n    {\n        \"code\": \"se\",\n        \"name\": \"Northern Sami\"\n    },\n    {\n        \"code\": \"no\",\n        \"name\": \"Norwegian\"\n    },\n    {\n        \"code\": \"nn\",\n        \"name\": \"Norwegian Nynorsk; Nynorsk, Norwegian\"\n    },\n    {\n        \"code\": \"oc\",\n        \"name\": \"Occitan (post 1500)\"\n    },\n    {\n        \"code\": \"oj\",\n        \"name\": \"Ojibwa\"\n    },\n    {\n        \"code\": \"or\",\n        \"name\": \"Oriya\"\n    },\n    {\n        \"code\": \"om\",\n        \"name\": \"Oromo\"\n    },\n    {\n        \"code\": \"os\",\n        \"name\": \"Ossetian; Ossetic\"\n    },\n    {\n        \"code\": \"pi\",\n        \"name\": \"Pali\"\n    },\n    {\n        \"code\": \"pa\",\n        \"name\": \"Panjabi; Punjabi\"\n    },\n    {\n        \"code\": \"fa\",\n        \"name\": \"Persian\"\n    },\n    {\n        \"code\": \"pl\",\n        \"name\": \"Polish\"\n    },\n    {\n        \"code\": \"pt\",\n        \"name\": \"Portuguese\"\n    },\n    {\n        \"code\": \"ps\",\n        \"name\": \"Pushto; Pashto\"\n    },\n    {\n        \"code\": \"qu\",\n        \"name\": \"Quechua\"\n    },\n    {\n        \"code\": \"ro\",\n        \"name\": \"Romanian; Moldavian; Moldovan\"\n    },\n    {\n        \"code\": \"rm\",\n        \"name\": \"Romansh\"\n    },\n    {\n        \"code\": \"rn\",\n        \"name\": \"Rundi\"\n    },\n    {\n        \"code\": \"ru\",\n        \"name\": \"Russian\"\n    },\n    {\n        \"code\": \"sm\",\n        \"name\": \"Samoan\"\n    },\n    {\n        \"code\": \"sg\",\n        \"name\": \"Sango\"\n    },\n    {\n        \"code\": \"sa\",\n        \"name\": \"Sanskrit\"\n    },\n    {\n        \"code\": \"sc\",\n        \"name\": \"Sardinian\"\n    },\n    {\n        \"code\": \"sr\",\n        \"name\": \"Serbian\"\n    },\n    {\n        \"code\": \"sn\",\n        \"name\": \"Shona\"\n    },\n    {\n        \"code\": \"ii\",\n        \"name\": \"Sichuan Yi; Nuosu\"\n    },\n    {\n        \"code\": \"sd\",\n        \"name\": \"Sindhi\"\n    },\n    {\n        \"code\": \"si\",\n        \"name\": \"Sinhala; Sinhalese\"\n    },\n    {\n        \"code\": \"sk\",\n        \"name\": \"Slovak\"\n    },\n    {\n        \"code\": \"sl\",\n        \"name\": \"Slovenian\"\n    },\n    {\n        \"code\": \"so\",\n        \"name\": \"Somali\"\n    },\n    {\n        \"code\": \"st\",\n        \"name\": \"Sotho, Southern\"\n    },\n    {\n        \"code\": \"es\",\n        \"name\": \"Spanish; Castilian\"\n    },\n    {\n        \"code\": \"su\",\n        \"name\": \"Sundanese\"\n    },\n    {\n        \"code\": \"sw\",\n        \"name\": \"Swahili\"\n    },\n    {\n        \"code\": \"ss\",\n        \"name\": \"Swati\"\n    },\n    {\n        \"code\": \"sv\",\n        \"name\": \"Swedish\"\n    },\n    {\n        \"code\": \"tl\",\n        \"name\": \"Tagalog\"\n    },\n    {\n        \"code\": \"ty\",\n        \"name\": \"Tahitian\"\n    },\n    {\n        \"code\": \"tg\",\n        \"name\": \"Tajik\"\n    },\n    {\n        \"code\": \"ta\",\n        \"name\": \"Tamil\"\n    },\n    {\n        \"code\": \"tt\",\n        \"name\": \"Tatar\"\n    },\n    {\n        \"code\": \"te\",\n        \"name\": \"Telugu\"\n    },\n    {\n        \"code\": \"th\",\n        \"name\": \"Thai\"\n    },\n    {\n        \"code\": \"bo\",\n        \"name\": \"Tibetan\"\n    },\n    {\n        \"code\": \"ti\",\n        \"name\": \"Tigrinya\"\n    },\n    {\n        \"code\": \"to\",\n        \"name\": \"Tonga (Tonga Islands)\"\n    },\n    {\n        \"code\": \"ts\",\n        \"name\": \"Tsonga\"\n    },\n    {\n        \"code\": \"tn\",\n        \"name\": \"Tswana\"\n    },\n    {\n        \"code\": \"tr\",\n        \"name\": \"Turkish\"\n    },\n    {\n        \"code\": \"tk\",\n        \"name\": \"Turkmen\"\n    },\n    {\n        \"code\": \"tw\",\n        \"name\": \"Twi\"\n    },\n    {\n        \"code\": \"ug\",\n        \"name\": \"Uighur; Uyghur\"\n    },\n    {\n        \"code\": \"uk\",\n        \"name\": \"Ukrainian\"\n    },\n    {\n        \"code\": \"ur\",\n        \"name\": \"Urdu\"\n    },\n    {\n        \"code\": \"uz\",\n        \"name\": \"Uzbek\"\n    },\n    {\n        \"code\": \"ve\",\n        \"name\": \"Venda\"\n    },\n    {\n        \"code\": \"vi\",\n        \"name\": \"Vietnamese\"\n    },\n    {\n        \"code\": \"vo\",\n        \"name\": null\n    },\n    {\n        \"code\": \"wa\",\n        \"name\": \"Walloon\"\n    },\n    {\n        \"code\": \"cy\",\n        \"name\": \"Welsh\"\n    },\n    {\n        \"code\": \"fy\",\n        \"name\": \"Western Frisian\"\n    },\n    {\n        \"code\": \"wo\",\n        \"name\": \"Wolof\"\n    },\n    {\n        \"code\": \"xh\",\n        \"name\": \"Xhosa\"\n    },\n    {\n        \"code\": \"yi\",\n        \"name\": \"Yiddish\"\n    },\n    {\n        \"code\": \"yo\",\n        \"name\": \"Yoruba\"\n    },\n    {\n        \"code\": \"za\",\n        \"name\": \"Zhuang; Chuang\"\n    },\n    {\n        \"code\": \"zu\",\n        \"name\": \"Zulu\"\n    }\n]"}],"_postman_id":"e446efc6-ce49-3728-8add-e57eccc53109"},{"name":"SMS Carrier List","id":"efd7d180-244f-43cd-b4f4-f4bf6d77fccb","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/getsmscarrierstable/","description":"<p>Retrieves a JSON array of SMS carriers currently supported by Omnilert containing the following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the carrier to pass back in a POST or PUT request when adding or updating a subscriber's SMS device (i.e., \"149\".)</td>\n</tr>\n<tr>\n<td>carrier_name</td>\n<td>The name of the carrier (i.e.: \"Airpage\".)</td>\n</tr>\n</tbody>\n</table>\n</div><p>This array can be leveraged in your application to allow your subscribers to select a carrier for your subscribers. The carrier must support shortcode SMS for the subscriber to self-validate their device via text message reply. So, unless advised otherwise, we recommend using \"0\" (Default) for adding new SMS devices. </p>\n<hr />\n","urlObject":{"protocol":"https","path":["v2","accounts","getsmscarrierstable",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"489a8921-2eb4-8aa5-1082-44fd4a73642e","name":"SMS Carrier List","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"Account key"},{"key":"username","value":"{{username}}","description":"API username"}],"url":"https://api.omnilert.net/v2/accounts/getsmscarrierstable/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"7786","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 17:35:20 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"320","body":"[\n    {\n        \"id\": \"149\",\n        \"carrier_name\": \"Airpage\"\n    },\n    {\n        \"id\": \"146\",\n        \"carrier_name\": \"Alaska Communication Systems\"\n    },\n    {\n        \"id\": \"137\",\n        \"carrier_name\": \"Aliant\"\n    },\n    {\n        \"id\": \"6\",\n        \"carrier_name\": \"Alltel\"\n    },\n    {\n        \"id\": \"1161\",\n        \"carrier_name\": \"Alltel (Alternate)\"\n    },\n    {\n        \"id\": \"110\",\n        \"carrier_name\": \"American Messaging\"\n    },\n    {\n        \"id\": \"115\",\n        \"carrier_name\": \"Ampd Mobile\"\n    },\n    {\n        \"id\": \"201\",\n        \"carrier_name\": \"Appalachian Wireless\"\n    },\n    {\n        \"id\": \"134\",\n        \"carrier_name\": \"Aquis Communications\"\n    },\n    {\n        \"id\": \"10\",\n        \"carrier_name\": \"Arch\"\n    },\n    {\n        \"id\": \"5\",\n        \"carrier_name\": \"AT&T\"\n    },\n    {\n        \"id\": \"3\",\n        \"carrier_name\": \"AT&T (Legacy)\"\n    },\n    {\n        \"id\": \"119\",\n        \"carrier_name\": \"ATS Paging\"\n    },\n    {\n        \"id\": \"114\",\n        \"carrier_name\": \"Bell Canada\"\n    },\n    {\n        \"id\": \"120\",\n        \"carrier_name\": \"Bluegrass Cellular\"\n    },\n    {\n        \"id\": \"138\",\n        \"carrier_name\": \"Boost\"\n    },\n    {\n        \"id\": \"125\",\n        \"carrier_name\": \"Boost Mobile\"\n    },\n    {\n        \"id\": \"112\",\n        \"carrier_name\": \"C-Spire\"\n    },\n    {\n        \"id\": \"241\",\n        \"carrier_name\": \"Capcom Pager (Thurston)\"\n    },\n    {\n        \"id\": \"1101\",\n        \"carrier_name\": \"Carolina West Wireless\"\n    },\n    {\n        \"id\": \"127\",\n        \"carrier_name\": \"Cellcom\"\n    },\n    {\n        \"id\": \"13\",\n        \"carrier_name\": \"Cellular One\"\n    },\n    {\n        \"id\": \"1091\",\n        \"carrier_name\": \"Cellular One (Alternate)\"\n    },\n    {\n        \"id\": \"150\",\n        \"carrier_name\": \"Cellular One Illinois (Regional)\"\n    },\n    {\n        \"id\": \"1111\",\n        \"carrier_name\": \"CellularOne of Northeast Pennsylvania\"\n    },\n    {\n        \"id\": \"221\",\n        \"carrier_name\": \"CellularOne of SLO\"\n    },\n    {\n        \"id\": \"109\",\n        \"carrier_name\": \"Centennial Wireless\"\n    },\n    {\n        \"id\": \"181\",\n        \"carrier_name\": \"Chariton Valley Wireless Service\"\n    },\n    {\n        \"id\": \"123\",\n        \"carrier_name\": \"Chat Mobility\"\n    },\n    {\n        \"id\": \"107\",\n        \"carrier_name\": \"Cincinnati Bell Wireless\"\n    },\n    {\n        \"id\": \"143\",\n        \"carrier_name\": \"Consumer Cellular\"\n    },\n    {\n        \"id\": \"341\",\n        \"carrier_name\": \"Contact Wireless\"\n    },\n    {\n        \"id\": \"261\",\n        \"carrier_name\": \"Cook Paging\"\n    },\n    {\n        \"id\": \"1004\",\n        \"carrier_name\": \"Cox Communications\"\n    },\n    {\n        \"id\": \"135\",\n        \"carrier_name\": \"Credo Mobile\"\n    },\n    {\n        \"id\": \"1014\",\n        \"carrier_name\": \"Cricket\"\n    },\n    {\n        \"id\": \"105\",\n        \"carrier_name\": \"Cricket (Alternate)\"\n    },\n    {\n        \"id\": \"271\",\n        \"carrier_name\": \"Cricket (MMS)\"\n    },\n    {\n        \"id\": \"1121\",\n        \"carrier_name\": \"CVC Paging\"\n    },\n    {\n        \"id\": \"0\",\n        \"carrier_name\": \"Default\"\n    },\n    {\n        \"id\": \"139\",\n        \"carrier_name\": \"Dobson\"\n    },\n    {\n        \"id\": \"126\",\n        \"carrier_name\": \"Edge Wireless\"\n    },\n    {\n        \"id\": \"291\",\n        \"carrier_name\": \"Einstein Wireless\"\n    },\n    {\n        \"id\": \"100038\",\n        \"carrier_name\": \"Fido\"\n    },\n    {\n        \"id\": \"113\",\n        \"carrier_name\": \"Five Star Wireless\"\n    },\n    {\n        \"id\": \"1024\",\n        \"carrier_name\": \"GCI \"\n    },\n    {\n        \"id\": \"100025\",\n        \"carrier_name\": \"Google Voice\"\n    },\n    {\n        \"id\": \"133\",\n        \"carrier_name\": \"Hargray Wireless\"\n    },\n    {\n        \"id\": \"144\",\n        \"carrier_name\": \"Helio\"\n    },\n    {\n        \"id\": \"321\",\n        \"carrier_name\": \"Illinois Valley Cellular\"\n    },\n    {\n        \"id\": \"145\",\n        \"carrier_name\": \"Immix/Keystone Wireless\"\n    },\n    {\n        \"id\": \"1141\",\n        \"carrier_name\": \"Indigo Wireless\"\n    },\n    {\n        \"id\": \"1034\",\n        \"carrier_name\": \"Inland Cellular \"\n    },\n    {\n        \"id\": \"100026\",\n        \"carrier_name\": \"International\"\n    },\n    {\n        \"id\": \"130\",\n        \"carrier_name\": \"iWireless\"\n    },\n    {\n        \"id\": \"100024\",\n        \"carrier_name\": \"James Valley Wireless\"\n    },\n    {\n        \"id\": \"17\",\n        \"carrier_name\": \"Metro PCS\"\n    },\n    {\n        \"id\": \"19\",\n        \"carrier_name\": \"Metrocall\"\n    },\n    {\n        \"id\": \"147\",\n        \"carrier_name\": \"Mid-Tex Cellular\"\n    },\n    {\n        \"id\": \"151\",\n        \"carrier_name\": \"NE Penn Telephone\"\n    },\n    {\n        \"id\": \"129\",\n        \"carrier_name\": \"Net10\"\n    },\n    {\n        \"id\": \"1044\",\n        \"carrier_name\": \"Nex-Tech Wireless\"\n    },\n    {\n        \"id\": \"7\",\n        \"carrier_name\": \"Nextel\"\n    },\n    {\n        \"id\": \"211\",\n        \"carrier_name\": \"Northwest Missouri Cellular\"\n    },\n    {\n        \"id\": \"999\",\n        \"carrier_name\": \"Other\"\n    },\n    {\n        \"id\": \"100040\",\n        \"carrier_name\": \"Page Plus\"\n    },\n    {\n        \"id\": \"122\",\n        \"carrier_name\": \"Panhandle Telephone\"\n    },\n    {\n        \"id\": \"121\",\n        \"carrier_name\": \"Pioneer Telephone\"\n    },\n    {\n        \"id\": \"251\",\n        \"carrier_name\": \"Plateau Telecommunications\"\n    },\n    {\n        \"id\": \"191\",\n        \"carrier_name\": \"Pocket Communications\"\n    },\n    {\n        \"id\": \"331\",\n        \"carrier_name\": \"Propage Pager\"\n    },\n    {\n        \"id\": \"101\",\n        \"carrier_name\": \"Qwest\"\n    },\n    {\n        \"id\": \"116\",\n        \"carrier_name\": \"RCS Wireless\"\n    },\n    {\n        \"id\": \"1054\",\n        \"carrier_name\": \"Revol Wireless\"\n    },\n    {\n        \"id\": \"104\",\n        \"carrier_name\": \"Rogers Mobility\"\n    },\n    {\n        \"id\": \"1064\",\n        \"carrier_name\": \"Rural Cellular Corporation\"\n    },\n    {\n        \"id\": \"106\",\n        \"carrier_name\": \"Sasktel\"\n    },\n    {\n        \"id\": \"161\",\n        \"carrier_name\": \"Schuylkill Mobile Fone\"\n    },\n    {\n        \"id\": \"140\",\n        \"carrier_name\": \"Singtel\"\n    },\n    {\n        \"id\": \"108\",\n        \"carrier_name\": \"SkyTel\"\n    },\n    {\n        \"id\": \"16\",\n        \"carrier_name\": \"SouthernLINC\"\n    },\n    {\n        \"id\": \"1\",\n        \"carrier_name\": \"Sprint PCS\"\n    },\n    {\n        \"id\": \"132\",\n        \"carrier_name\": \"Sprint PCS (Alternate)\"\n    },\n    {\n        \"id\": \"1151\",\n        \"carrier_name\": \"Standing Rock Telecom\"\n    },\n    {\n        \"id\": \"23\",\n        \"carrier_name\": \"SunCom / Triton\"\n    },\n    {\n        \"id\": \"4\",\n        \"carrier_name\": \"T-Mobile\"\n    },\n    {\n        \"id\": \"131\",\n        \"carrier_name\": \"T-Mobile (Pre-Paid)\"\n    },\n    {\n        \"id\": \"231\",\n        \"carrier_name\": \"Teletouch Paging\"\n    },\n    {\n        \"id\": \"111\",\n        \"carrier_name\": \"Telus Mobility\"\n    },\n    {\n        \"id\": \"301\",\n        \"carrier_name\": \"Thumb Cellular\"\n    },\n    {\n        \"id\": \"128\",\n        \"carrier_name\": \"Tracfone\"\n    },\n    {\n        \"id\": \"15\",\n        \"carrier_name\": \"U.S Cellular\"\n    },\n    {\n        \"id\": \"118\",\n        \"carrier_name\": \"Unicel\"\n    },\n    {\n        \"id\": \"1074\",\n        \"carrier_name\": \"United Wireless \"\n    },\n    {\n        \"id\": \"142\",\n        \"carrier_name\": \"USA Mobility\"\n    },\n    {\n        \"id\": \"2\",\n        \"carrier_name\": \"Verizon Wireless\"\n    },\n    {\n        \"id\": \"136\",\n        \"carrier_name\": \"Verizon Wireless (Alternate)\"\n    },\n    {\n        \"id\": \"281\",\n        \"carrier_name\": \"Viaero Wireless\"\n    },\n    {\n        \"id\": \"22\",\n        \"carrier_name\": \"Virgin Mobile\"\n    },\n    {\n        \"id\": \"100039\",\n        \"carrier_name\": \"Virgin Mobile Canada\"\n    },\n    {\n        \"id\": \"1084\",\n        \"carrier_name\": \"WCC\"\n    },\n    {\n        \"id\": \"311\",\n        \"carrier_name\": \"WCS Communications\"\n    },\n    {\n        \"id\": \"148\",\n        \"carrier_name\": \"West Central Wireless\"\n    }\n]"}],"_postman_id":"efd7d180-244f-43cd-b4f4-f4bf6d77fccb"},{"name":"Timezones","id":"63fe028e-09ad-5055-10b0-3a8f65038833","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{username}}"},{"key":"password","value":"{{password}}"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","description":"<p>Account key</p>\n"},{"key":"username","value":"{{username}}","description":"<p>API username</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/gettimezonestable/","description":"<p>Retrieves a JSON array of timezones that can be used to update your account's timezone with following values:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TZ</td>\n<td>Timezone (i.e.: \"America/New_York\".)</td>\n</tr>\n<tr>\n<td>name</td>\n<td>The name of the timezone (i.e.: \"Eastern Time\".)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["v2","accounts","gettimezonestable",""],"host":["api","omnilert","net"],"query":[],"variable":[]}},"response":[{"id":"a1ba1356-4fc0-a9e2-10cb-c1e17ad26b0b","name":"Timezones","originalRequest":{"method":"GET","header":[{"key":"omnilert_account_key","value":"{{omnilert_account_key}}","disabled":false,"description":"Account key"},{"key":"username","value":"{{username}}","disabled":false,"description":"API username"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.omnilert.net/v2/accounts/gettimezonestable/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2786","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 02 Nov 2017 15:24:56 GMT","name":"Date","description":""},{"key":"Server","value":"Apache/2.2.22 (Debian)","name":"Server","description":""},{"key":"Vary","value":"Host","name":"Vary","description":""},{"key":"X-Powered-By","value":"PHP/5.4.45-0+deb7u11","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"api.omnilert.net","path":"/","secure":false,"value":"cgrhicgi5sedqr0eobsvsc9222","key":"OMNISESSION"}],"responseTime":"77","body":" [\n    {\n        \"TZ\": \"America\\/Anchorage\",\n        \"name\": \"Alaska Time\"\n    },\n    {\n        \"TZ\": \"America\\/Juneau\",\n        \"name\": \"Alaska Time - Alaska Panhandle\"\n    },\n    {\n        \"TZ\": \"America\\/Yakutat\",\n        \"name\": \"Alaska Time - Alaska Panhandle Neck\"\n    },\n    {\n        \"TZ\": \"America\\/Nome\",\n        \"name\": \"Alaska Time - West Alaska\"\n    },\n    {\n        \"TZ\": \"America\\/Adak\",\n        \"name\": \"Aleutian Islands\"\n    },\n    {\n        \"TZ\": \"America\\/Chicago\",\n        \"name\": \"Central Time\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Tell_City\",\n        \"name\": \"Central Time - Indiana - Perry County\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Knox\",\n        \"name\": \"Central Time - Indiana - Starke County\"\n    },\n    {\n        \"TZ\": \"America\\/Menominee\",\n        \"name\": \"Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties\"\n    },\n    {\n        \"TZ\": \"America\\/North_Dakota\\/New_Salem\",\n        \"name\": \"Central Time - North Dakota - Morton County (except Mandan area)\"\n    },\n    {\n        \"TZ\": \"America\\/North_Dakota\\/Center\",\n        \"name\": \"Central Time - North Dakota - Oliver County\"\n    },\n    {\n        \"TZ\": \"America\\/New_York\",\n        \"name\": \"Eastern Time\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Indianapolis\",\n        \"name\": \"Eastern Time - Indiana\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Marengo\",\n        \"name\": \"Eastern Time - Indiana - Crawford County\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Vincennes\",\n        \"name\": \"Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Petersburg\",\n        \"name\": \"Eastern Time - Indiana - Pike County\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Winamac\",\n        \"name\": \"Eastern Time - Indiana - Pulaski County\"\n    },\n    {\n        \"TZ\": \"America\\/Indiana\\/Vevay\",\n        \"name\": \"Eastern Time - Indiana - Switzerland County\"\n    },\n    {\n        \"TZ\": \"America\\/Kentucky\\/Louisville\",\n        \"name\": \"Eastern Time - Kentucky - Louisville area\"\n    },\n    {\n        \"TZ\": \"America\\/Kentucky\\/Monticello\",\n        \"name\": \"Eastern Time - Kentucky - Wayne County\"\n    },\n    {\n        \"TZ\": \"America\\/Detroit\",\n        \"name\": \"Eastern Time - Michigan\"\n    },\n    {\n        \"TZ\": \"Pacific\\/Honolulu\",\n        \"name\": \"Hawaii\"\n    },\n    {\n        \"TZ\": \"America\\/Phoenix\",\n        \"name\": \"Mountain Standard Time - Arizona\"\n    },\n    {\n        \"TZ\": \"America\\/Denver\",\n        \"name\": \"Mountain Time\"\n    },\n    {\n        \"TZ\": \"America\\/Shiprock\",\n        \"name\": \"Mountain Time - Navajo\"\n    },\n    {\n        \"TZ\": \"America\\/Boise\",\n        \"name\": \"Mountain Time - South Idaho & East Oregon\"\n    },\n    {\n        \"TZ\": \"America\\/Los_Angeles\",\n        \"name\": \"Pacific Time\"\n    }\n]"}],"_postman_id":"63fe028e-09ad-5055-10b0-3a8f65038833"}],"id":"99076e16-5c08-4fbe-97d2-3f34961472d1","description":"<p>Miscellaneous API commands to provide look up of values such as carrier names and language name information </p>\n","event":[{"listen":"prerequest","script":{"id":"3ac866e0-c97a-479f-bc10-900dfbc6f948","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"11fe0b73-51ac-4f65-9793-5115a3eab556","type":"text/javascript","exec":[""]}}],"_postman_id":"99076e16-5c08-4fbe-97d2-3f34961472d1"}],"event":[{"listen":"prerequest","script":{"id":"8b8db37a-cbc9-4324-a31c-e237e9c19681","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"29344e4e-7735-4c86-8fde-05e09f393fc6","type":"text/javascript","exec":[""]}}]}