Symptom Checker API v1.2 Documentation

Size: px
Start display at page:

Download "Symptom Checker API v1.2 Documentation"

Transcription

1 Symptom Checker API v1.2 Documentation

2 07/06/16 Self Care Decisions Symptom Checker API 2 Symptom Checker API v1.2 Overview... 3 Supplemental Resources... 4 Sample Web Application and User Story... 4 Interaction Model... 5 URL Formation... 6 Version Code... 6 Language Code... 6 Authentication... 6 Version Code... 6 Cross Site Scripting with JSONP... 7 Symptom Checker... 8 Index... 8 Symptom Checker Topic Special Topic Image Topic First Aid Index Dosage Tables Index Dosage Table Topic Parent Advice Messages Index Parent Advice Message Supplemental Topics Index... 23

3 07/06/16 Self Care Decisions Symptom Checker API 3 Symptom Checker API v1.2 Overview The Symptom Checker API is a restful web service allowing licensed clients to interface with Self Care Decision s Symptom Checker content. Self Care Decisions currently offers 132 Pediatric and 108 Adult Symptom Checker care guides, as well as 213 additional Images, 55 First Aid Topics and 25 Drug Dosage Tables (7 pediatric; 18 adult). These topics are organized into Symptom Checker, First Aid and Dosage Table indices. The Symptom Checker API returns a JSON response for each index and each topic. An additional content set containing 145 Parent Advice Messages is also available. These topics offer advice for pediatric behavior, eating and wellness questions. Nine supplemental information topics with user instructions, information about the authors, reviewers, copyright and disclaimer are also available. Symptom Checker First Aid Index Adult Index Pediatric Index First Aid Topic Symptom Checker Topic Symptom Checker Topic Special Topic Symptom Checker API Dosage Table Index Pediatric Dosage Table Topic Adult Dosage Table Topic Parent Advice Message Index Parent Advice Topic Supplemental Information Supplemental Topic

4 07/06/16 Self Care Decisions Symptom Checker API 4 Supplemental Resources Sample Web Application and User Story This documentation is supplemented with a sample web application and a user story. These resources are meant to help developers understand the organization of our content and begin developing their applications. Developer Portal Once you have licensed the Symptom Checker API, you will be supplied a link and credentials to access your developer portal. Here you will manage your API keys and have access to the latest API documentation and supplemental API resources. You will also find an API request formation tool allowing you to see properly formed API requests and their response values. Sample Web Application Found on the Resources page of the Developer Portal, this sample web application is a client side implementation of the content made available by the Symptom Checker API. It uses the jquery javascript library to render HTML from the Symptom Checker API response values. Developers are encouraged to use the sample web application source as a reference in their implementation. User Story In addition to the sample web application, a user story is also provided on the Resources page of the Developer Portal. This user story contains a narrative of the typical interaction between a user and the Symptom Checker API and is supplemented with screenshots from the sample web application.

5 07/06/16 Self Care Decisions Symptom Checker API 5 Interaction Model As shown in the Symptom Checker API Overview diagram, the Symptom Checker API responds to calls for the Adult and Pediatric Symptom Checker indices as well as 4 supplemental indices. Interaction between the client and the server should typically begin with a request for the desired index. In the case of a Symptom Checker index call, an age parameter of adult or peds (pediatric) is required. The client requests the index with the appropriate parameter from the server and the server returns a JSON response. The client renders this response into a user interface and prompts the user to make a selection. When a topic is selected, this process is repeated. The client requests the topic with the selected topic s ID parameter and the server returns a JSON response containing all of the data associated with that topic. The client renders this response into a user interface displaying the topic information to the user. For complete documentation of the Interaction Model please refer to the User Story document provided along with this documentation. Client Server GET topictable with AGE RETURN titles object GET topic with ID RETURN topic object

6 07/06/16 Self Care Decisions Symptom Checker API 6 URL Formation Development and Production Environments Development environment address (requires authentication): Production environment address (requires authentication): The Symptom Checker API can be accessed at two different addresses. There is a development environment that should be used during application development, and a production environment that should be used in live applications. Both the development and the production environments offer the complete Symptom Checker API. The development environment is a virtual server that hosts both web and SQL servers and the production environment is redundant, separate web and SQL servers using RRDNS and DNS failover. Version Code Example URL: The path for Symptom Checker API calls must include a version code. The version code in the example is 1.2. In the URL above, you will see that the version code follows json/ in the URL, and will precede any parameters for a requested file. Any change made to the organization of the Symptom Checker API return values will be made on a subsequent version. When new versions are available, developers will be notified and provided updated documentation so that they can begin developing on the new version. When a new version is released, the previous version will remain available for at least one year from the release of the new version. Language Code Example URL: The path for Symptom Checker API requests must include a language code. The language code in the example is en. In the URL above, you will see that the language code follows the version code in the URL. The English language code is en and the Spanish language code is es. Please be sure to use an appropriate language code based on your license. Authentication Example URL: The Symptom Checker API uses keyed-hash message authentication code (HMAC) for authentication and identification. A public key, the URL for the requested resource and the current Unix timestamp are to be combined in that order, separated by " " (vertical bar) characters to form the HMAC message. An application specific private key will be provided to

7 07/06/16 Self Care Decisions Symptom Checker API 7 be used as the HMAC key. HMAC construction using SHA-256 encoding should be performed on the message and the private key in order to calculate a HMAC token. The HMAC token should then be encoded using base 64 encoding. This token should be included with every API request, along with parameters specifying the public key and a timestamp for the request. Requests are valid for 300 seconds, or 5 minutes from formation. Example HMAC Message for adult topic table: abc json/1.2/en/topictable/adult In this example, the public key is abc, the URL for the requested resource is json/1.2/en/topictable/adult and the timestamp is Note that the url for the requested resource omits the portion of the path, and also any parameters. To see a working example, please review the file provided in the sample web application at Note that private keys must be kept private. For the purposes of the sample web application, the private key is kept in plain text in client side code. This should not be the case in production applications. If a private key is leaked, a new key will have to be issued and the application will have to be updated immediately. The old key will need to be revoked in order to prevent API misuse. Private keys can be found in the developer portal. Cross Site Scripting with JSONP Example URL: The Symptom Checker API utilizes JSONP to accommodate cross-site scripting. JSONP stands for JSON with padding and is a communication technique that involves wrapping a JSON object in a JavaScript callback function in order to circumvent the same origin policy enforced by many modern web browsers. You can request a JSONP response from the Symptom Checker API by appending?callback=? to your request.

8 07/06/16 Self Care Decisions Symptom Checker API 8 Symptom Checker Index Symptom Checker Index API Call Sample URL: BodyArea=BodyArea&BodyRegion=BodyRegion&BodyPart=BodyPart Possible Parameters: AGE (required), BodyArea, BodyRegion, BodyPart Parameter Value Description AGE adult, peds Specifies the age range for the index data that should be returned BodyArea e.g. Arm%20or%20Ha nd String from bodyarea Specifies a filter for a particular Body Area. Body Area values can be found here - en/bodyarea BodyRegion e.g. Arm String from bodyregions Specifies a filter for a particular Body Region. Body Region values can be found here - en/bodyregion BodyPart e.g. Wrist String from bodyparts Specifies a filter for a particular Body Part. Body Part values can be found here - en/bodypart The index API call is used to get the full index for the specified age range. The response is a simple JSON string which contains an array of titles objects. Each titles object has the following keys: id: INT, primary key for topic title: STRING, title for topic

9 07/06/16 Self Care Decisions Symptom Checker API 9 specialtopic: BOOL, true for supplemental information topics and false for regular symptom checker topics pediatric: BOOL, true for pediatric, false for not pediatric (adult) gender: STRING, M for male, F for female, or B for both. A supplemental table containing possible values can be found here: bodyareas: ARRAY of STRING values, specifying body area topic is related to. Possible values are: Baby Symptoms, Head or Brain, Eye, Ear, Nose, Mouth or Teeth, Neck or Back, Arm or Hand, Chest, Abdomen, Pregnancy, Genitals or Urinary, Bottom, Leg or Foot, Skin, Other Symptoms. A supplemental table of possible values can be requested here: keywords: ARRAY of STRING values, specifying a keyword or keyword phrase associated with topic. "titles": [ "id": "7", "title": "Bee or Yellow Jacket Sting ", "specialtopic": false, "pediatric": "true", "gender": "B", "bodyareas": [ "Skin", "keywords": [ "BEE" BodyArea1 This endpoint is supplemental to the /bodyareas endpoint. It returns an array of objects, rather than an array of strings. These objects describe the body area in more detail. BodyArea1 API Call Sample URL:

10 07/06/16 Self Care Decisions Symptom Checker API 10 bodyareas: ARRAY of bodyarea objects id: STRING, id for bodyarea. Is usually the title of the area in the default language (English) title: STRING, title for bodyarea gender: STRING, "M, F or B for male, female or both. age: STRING, adult, child, both describing the age range that the body area applies to. order: INT, range of specifying an order for body area listings. It is based off of ten so that there is room to grow. "bodyareas": [ "id": "Baby Symptoms", "title": "Baby Symptoms", "age": "child", gender : B, "order": 10, "id": "Head or Brain", "title": "Head or Brain", "age": "both", gender : B, "order": 20,

11 07/06/16 Self Care Decisions Symptom Checker API 11 Symptom Checker Topic The primary goals of the symptom checker topic are to match a user to a description of his/her symptoms and to identify what level of care (dispositions:) is recommended to treat those symptoms. This is accomplished by offering a definition (definition: detail:) and any related topics (alternatetopics: alternatetopic) to the user. If the user feels his/her symptoms match the definition offered in a symptom checker topic, then the user progresses to a decision tree to assess what level of care is recommended. The user is asked to read through a list of triage statements and identify the first statement that matches his/her symptom scenario. The triage statements are organized into sections (dispositions:) which prompt the user to take a particular action. These sections should be organized from most severe (dispositions: level: 100) to least severe (dispositions: level: 10). When the user identifies a triage statement (dispositions: detail: text:) that describes his/her symptom scenario, he/she is instructed to take the appropriate action for the disposition level for that statement (dispositions: text:). If the user s symptom is matched to a disposition level 65 or lower (any non-urgent disposition), the user should be directed to read through the care advice (advice:). Each topic also offers Causes and Additional health information (background:) and may offer Images (images:) relevant to the topic. Symptom Checker Topic API Call Sample URL: Possible Parameters: ID (required) Parameter Value Description ID Integer > 0 The primary key for the requested topic The Symptom Checker Topic API call is used to get the data for any Symptom Checker Topic. The response is a complex JSON string which contains a topic object. The topic object contains the following keys: id: INT, primary key for topic title: STRING, title for topic pediatric: BOOL, true for pediatric, false for non-pediatric (adult)

12 07/06/16 Self Care Decisions Symptom Checker API 12 gender: STRING, M for male, F for female, or B for both. A supplemental table containing possible values can be found here: disclaimer: STRING, containing text for disclaimer. copyright: STRING, containing text for copyright. definition: o header: STRING, text asking if this is your symptom or your child s symptom based upon age for topic. o detail: ARRAY of STRING values with text describing symptom alternatetopics: optional o header: STRING, text introducing related topics o alternatetopic: ARRAY of related topics id: INTEGER, specifying primary key for related topic title: STRING, specifying the title for related topic images: ARRAY, supplemental image object, optional o id: STRING, primary key for image topic o thumbref: STRING, file name of thumbnail for image topic o top4: BOOL, flag specifying true if the image is one of the top 4 images that should be shown for the topic, and false if it is not. o title: STRING, specifying the title for the image topic dispositions: ARRAY, disposition objects describing the level of care recommended for an array of triage statements (questions:) pertaining to the symptom. The level and description values are correlated, and they have the following possible values: 100 Call 911 Now, 90 Call Your Doctor Now or Go to ER, 89 Call Your Dentist or Doctor Now, 85 Call Poison Center Now, 65 Call Your Doctor Within 24 Hours, 64 Call Your Dentist Within 24 Hours, 20 Call Your Doctor During Weekday Office Hours, 19 Call Your Dentist During Office Hours, 10 Self Care at Home. A supplemental table with the level and text values for all possible values is available here: o level: INT, key for the level of care needed. o description: STRING, describing the level of care recommended for an array of statements o questions: ARRAY, triage statements id: INT, primary key for statement sequence: INT, specifying the order that the statement should display within the disposition array telemedicine: STRING, describing what level of telemedicine might be appropriate if the triage statement is a match for the user s symptom scenario. Possible values are na for not appropriate, audio for audio only (telephone), audio+image for audio with store/forward or video image (asynchronous telemedicine service), audio+video for audio-

13 07/06/16 Self Care Decisions Symptom Checker API 13 video/webcam, audio+data for audio-video enhanced, potentially with a data feed from adjunctive medical devices. A supplemental table with possible values can be found here: edicine text: STRING, the text for the question statement urgentcare: BOOLEAN, True indicates that an Urgent Care option would be safe and appropriate. False indicates that an Urgent Care is not indicated for the symptom scenario described by that triage question. firstaidid: INT, optional. The primary key for any first aid advice associated with the triage statement (questions:). firstaidtitle: STRING, optional. Specifying the title for any first aid advice associated with the triage statement. advice: o title: STRING, the title for the care advice topic o text: STRING, HTML for the body of the care advice topic o footer: STRING, the footer for the care advice topic background: STRING, HTML offering causes and additional health information related to the topic "topic": "id": "7", "title": "Bee Sting", "pediatric": true, "gender": "B", "disclaimer": "Disclaimer: This information is not intended...", "copyright": "Copyright ", "definition": "header": "Is this your child's symptom?", "detail": [ "Stung by a honeybee, bumblebee, hornet, wasp, or yellow jacket", "alternatetopics": "header": "If NOT, try one of these:", "alternatetopic": [ "id": "58", "title": "Insect Bite"

14 07/06/16 Self Care Decisions Symptom Checker API 14, "firstaid": [ "description": "<ul><li>for Anaphylaxis - Epinephrine</li></ul>", "text": "<p><strong>first Aid for Anaphylaxis - Epinephrine</strong></p>...", "images": [ "id": "30", "title": "Bee Sting of Left Hand", "thumbref": "beesting3_x124.jpg", "top4": true, "dispositions": [ "level": "100", "text": "Call 911 Now", "questions": [ "id": "10382", "sequence": "1", "telemedicine": "na", "text": "Past severe allergic reaction to bee stings (not just hives) and stung less than 2 hours ago", "firstaidid": "503", "firstaidtitle": "Anaphylaxis - Child", "urgentcare": false, "advice": "title": "Care Advice for Bee or Yellow Jacket Sting", "text": "<p><strong></strong></p><ol><li><strong>what You Should Know About Bee Stings:</strong><ul><li>...", "background": "<p><strong>cause of Bee Sting Reactions</strong></p><ul><li>...",

15 07/06/16 Self Care Decisions Symptom Checker API 15 "bodyareas": [ "Skin" Special Topic The Special Topic is a supplementary topic which is included in the Pediatric Symptom Checker Index. These topics offer supplemental information, but do not fit the regular Symptom based triage model. They are much simpler. There are currently 6 of these topics. Special Topic API Call Sample URL: Possible Parameters: id (required) Parameter Value Description ID Integer The primary key for the requested topic The Special Topic API call is used to get the data for any Special Topic. The response is a simple JSON string which contains a specialtopic object. The specialtopic object contains the following keys: id: INT, primary key for the special topic title: STRING, text for the title of the topic text: STRING, HTML for the body of the topic author: STRING, text with the author of the topic copyright: STRING, text with the copyright information of the topic "specialtopic": "id": "992", "title": "Emergency Symptoms Not To Miss", "text": "text", "author": "author", "copyright": "copyright"

16 07/06/16 Self Care Decisions Symptom Checker API 16 Image Topic The Image Topic is a supplementary topic that features an image and text. Image topics may be accessed from a symptom checker topic or the first aid index. Image Topic API Call Sample URL: Possible Parameters: id (required) Parameter Value Description ID Integer The primary key for the requested topic The Image Topic API call is used to get the data for any Image Topic. The response is a simple JSON string which contains an image object. The image object contains the following keys: id: INT, primary key for the image topic thumbref: STRING, file name of thumbnail for image topic imageref: STRING, file name of full image for image topic title: STRING, text for the title of the image topic text: STRING, HTML for the body of the image topic source: STRING, text with the source of the image copyright: STRING, text with the copyright information of the image topic "image": "id": 30, "thumbref": "beesting3_x124.jpg", "imageref": "beesting3.jpg", "title": "Bee Sting of Left Hand", "text": "<p>moderate swelling of left hand, "source": "LMS Inc.", "copyright": "Copyright

17 07/06/16 Self Care Decisions Symptom Checker API 17 First Aid Index The First Aid Index makes the image topics that offer first aid advice accessible from an independent index. All of the first aid topics should be requested using the Image Topic API Call in the previous section of this document. It is suggested that the First Aid index should be displayed in two sections, Life-Threatening and All First Aid Topics. This allows users to quickly find First Aid advice for life-threatening conditions without having to browse the full index. The first aid topics are image topics and should be accessed via an image topic API call for the appropriate ID. First Aid Topic API Call Sample URL: No possible parameters. The response is a simple JSON string which contains an array of titles objects. Each titles object contains the following keys: id: INT, primary key for first aid topic (image topic) keywords: ARRAY of STRING values, specifying a keyword or keyword phrase associated with topic thumbref: STRING, url for the thumbnail image title: STRING, text for the title of the first aid topic lifethreatening: BOOL, true if the topic offers first aid advice for a life threatening condition, false if not. "titles": [ "id": "361", "keywords": [ "ELECTRIC", "thumbref": "fa_elecshock_x124.jpg", "title": "Electrical Shock Rescue", lifethreatening : true

18 07/06/16 Self Care Decisions Symptom Checker API 18 First Aid Topic The first aid topics are image topics and should be accessed via an image topic API call for the appropriate ID. First Aid Group API Call Both encounter and population-based licenses allow for the caching of the first aid content. The goal of this is to allow application developers to cache the first aid content so that users may have access to this content when they are experiencing limited connectivity. To accommodate this, the First Aid Group API Call is provided, allowing developers to request the First Aid Index, and all of the First Aid Image Topics simultaneously. First Aid Group API Call Sample URL: Possible Parameters: TIME (required) Parameter Value Description TIME Integer Unix time stamp in seconds for the previous request. The time parameter of 0 will return all of the first aid content and should be used on the initial cache. When the response has been cached, a Unix time stamp should be recorded. This time stamp should be used for the time parameter in the next request. The First Aid Group API Call will only respond with any indices or topics that have been updated since the Unix time indicated by the time parameter. The response is a complex JSON string which contains a titles object with an array of values and an image object with an array of values. titles: OBJECT containing titles ARRAY, an array of titles objects with an identical response to a first aid index API call (See example for schema. SCD acknowledges that the nesting of titles objects is unnecessary and will resolve this in the next major version release. Contact SCD if this poses any problems for you) image: ARRAY, an array of image objects with an identical response as an image topic API call "image":[, "titles":"titles":[

19 07/06/16 Self Care Decisions Symptom Checker API 19 Dosage Table Topics Index The Dosage Table Index makes Dosage Table Topics accessible from an independent index. There are currently 7 Pediatric and 18 Adult Dosage Table Topics available. Dosage Table Index API Call Sample URL: Parameter Value Description AGE adult, peds Specifies the age range for the index data that should be returned The response is a simple JSON string which contains an array of titles objects. Each titles object contains the following keys: id: INT, primary key for dosage table topic title: STRING, text for the title of the dosage table topic "titles": [ "id": "299", "title": "Acetaminophen (Tylenol)"

20 07/06/16 Self Care Decisions Symptom Checker API 20 Dosage Table Topic The Dosage Table Topic is a supplementary topic that features an HTML table showing dosage information for common over-the-counter medications. Dosage table topics may be accessed from the Dosage Table Index. Dosage Table Topic API Call Sample URL: Possible Parameters: id (required) Parameter Value Description ID Integer The primary key for the requested topic The Dosage Table Topic API call is used to get the data for any Dosage Table Topic. The response is a simple JSON string which contains a dosagetable object. The dosagetable object contains the following keys: id: INT, primary key for the dosage table topic title: STRING, text for the title of the dosage table topic text: STRING, HTML for the body of the dosage table topic author: STRING, text with the author of the dosage table topic copyright: STRING, text with the copyright information of the dosage table topic "id": 299, "title": "Acetaminophen (Tylenol) Dose Table", "text": "<table border=\"1\" cellpadding=\"6\" width=\"100%\"><tr> ", "author": "Barton D. Schmitt, M.D.", "copyright": "Copyright Barton D. Schmitt, M.D."

21 07/06/16 Self Care Decisions Symptom Checker API 21 Parent Advice Messages Index The Parent Advice Message Index makes the Parent Advice Messages accessible. It is recommended that the Parent Advice Message Index be organized by category. Parent Advice Message Index API Call Sample URL: No possible parameters. The response is a simple JSON string which contains an array of titles objects. Each titles object contains the following keys: id: INT, primary key for parent advice message category: STRING, text specifying the category which is most appropriate for the parent advice message. Possible values are: "Behavior Problems: Others", "Discipline Problems", "Eating Problems", "Family Issues", "Injury Prevention", "School Problems", "Sleep Problems", "Staying Healthy (Wellness)", "Teenagers", "Toilet Training and Bedwetting". A supplemental table with possible values is available here: system: STRING, provides optional identification of the topic to a body system. A supplemental table with possible values is available here: title: STRING, text with the title for the parent advice message keywords: ARRAY of STRING values, text with any keywords or keyword phrases associated with the topic. "titles": [ "id": "22", "category": "Injury Prevention", "system": "Respiratory System", "title": "Drowning: Prevention", "keywords": [ "BATHTUB"

22 07/06/16 Self Care Decisions Symptom Checker API 22 Parent Advice Message A Parent Advice Message is a supplementary topic that provides advice for common pediatric behavior, eating and wellness concerns. The Parent Advice Message is accessed via the Parent Advice Message Index. Parent Advice Message API Call Sample URL: Possible Parameters: id (required) Parameter Value Description id Integer The primary key for the requested topic The Parent Advice Message API call is used to get the data for any Parent Advice Message. The response is a simple JSON string which contains a parentadvice object. The parentadvice object contains the following keys: id: INT, primary key for the parent advice message category: STRING, text specifying the category of behavior or concern in which the parent advice message best fits. A supplemental table with possible values is available here: system: STRING, provides optional identification of the topic to a body system. A supplemental table with possible values is available here: title: STRING, text for the title of the parent advice message text: STRING, HTML for the body of the parent advice message copyright: STRING, text with the copyright information of the parent advice message "parentadvice": "id": "22", "category": "Injury Prevention", "system": "Respiratory System", "title": "Drowning: Prevention", "text": " <p>drowning usually occurs in private swimming pools ", "copyright": " Copyright Barton Schmitt, M.D."

23 07/06/16 Self Care Decisions Symptom Checker API 23 Supplemental Topics Index The Symptom Checker API also includes supplemental topics with information regarding the content set. The supplemental topic table contains 3 informational topics regarding the use of the symptom checker, titled: Introduction, Instructions, and When To Call. It also contains Author and Reviewer information for both the adult and the pediatric content sets, copyright and disclaimer topics. These are all special topics and should be accessed via a special topic API call for the appropriate ID. Supplemental Topic Index API Call Sample URL: No possible parameters. The response is a simple JSON string which contains an array of titles objects. Each titles object contains the following keys: id: INT, primary key for special topic title: STRING, text for the title of the special topic "titles": [ "id":"294, "title":"introduction"

Software Instructions

Software Instructions Software Instructions A brief guide to using the software features of ClearTriage Table of Contents Sign In... 2 Navigation, General Notes and Menu... 2 Protocols... 3 Questions... 3 Care Advice... 4 Copy

More information

DB2 Web Query (REST based) Application Extension. Usage Instructions

DB2 Web Query (REST based) Application Extension. Usage Instructions DB2 Web Query (REST based) Application Extension Usage Instructions Updated March 29, 2016 Page 1 1 Overview... 4 2 Initial Setup... 5 3 Using the Extension... 6 3.1 Modes of use... 6 3.1.1 Browse Mode...

More information

healthdirect Symptom Checker Facebook chat-bot overview

healthdirect Symptom Checker Facebook chat-bot overview healthdirect Symptom Checker Facebook chat-bot overview V. 2.0 Atik Zahan 12 th May 2017 Contents: Overview Proposed Architecture Example flow Facebook messaging limitations Conclusions Overview: The healthdirect

More information

Software Instructions

Software Instructions Software Instructions A brief guide to using the software features of ClearTriage Table of Contents Sign In... 2 Navigation, General Notes and Menu... 2 Protocols... 3 Questions... 3 Care Advice... 4 Copy

More information

SelectSurveyASP Advanced User Manual

SelectSurveyASP Advanced User Manual SelectSurveyASP Advanced User Manual Creating Surveys 2 Designing Surveys 2 Templates 3 Libraries 4 Item Types 4 Scored Surveys 5 Page Conditions 5 Piping Answers 6 Previewing Surveys 7 Managing Surveys

More information

High -Tech Bridge s Web Server Security Service API Developer Documentation Version v1.3 February 13 th 2018

High -Tech Bridge s Web Server Security Service API Developer Documentation Version v1.3 February 13 th 2018 HTB_WEBSECDOCS_v1.3.pdf Page 1 of 29 High -Tech Bridge s Web Server Security Service API Developer Documentation Version v1.3 February 13 th 2018 General Overview... 2 Meta-information... 4 HTTP Additional

More information

Discovery data feed for Eid 2.0

Discovery data feed for Eid 2.0 Discovery data feed for Eid 2.0 Proposal for a generic discovery solution for Eid 2.0 Stefan Santesson, 3xA Security AB 2011-09- 10 Summary E- legitimationsnämnden in Sweden are preparing for a new infrastructure

More information

El Rancho Unified School District Parent Portal Data Confirmation for Returning Students

El Rancho Unified School District Parent Portal Data Confirmation for Returning Students El Rancho Unified School District Parent Portal Data Confirmation for Returning Students Begin here Log into your Parent Portal account. https://portal.erusd.k12.ca.us/parent/loginparent.aspx Enter your

More information

Patient Registration

Patient Registration Patient Registration Adding a Patient Adding a new patient through SequelMed can be accomplished through just a few steps: Defining the Patient Attaching a Plan (optional) Attaching Documents (optional)

More information

Departmental Reports: Posted 48 Hours After the Report Reaches a Signed Status

Departmental Reports: Posted 48 Hours After the Report Reaches a Signed Status What is My Noyes HEALTH? My Noyes Health offers patients personalized and secure online access to portions of your Noyes HEALTH record. My Noyes HEALTH enables you to securely use the Internet to help

More information

Highwinds CDN Content Protection Products. August 2009

Highwinds CDN Content Protection Products. August 2009 Highwinds CDN Content Protection Products August 2009 1 Highwinds CDN Content Protection Products August 2009 Table of Contents CDN SECURITY INTRO... 3 CONTENT PROTECTION BY CDN DELIVERY PRODUCT... 3 HTTP

More information

MyHealthRecord. Patient User Guide. Top of Page Table of Contents

MyHealthRecord. Patient User Guide. Top of Page Table of Contents MyHealthRecord Patient User Guide 1 P a g e Information Technology Department MyHealthRecord Patient User Guide Copyright 2014 Family Health Centers of San Diego, Inc. 823 Gateway Center Way San Diego,

More information

Krames On-Demand v6. Patient Education Application User Guide Krames StayWell 780 Township Line Road Yardley, PA

Krames On-Demand v6. Patient Education Application User Guide Krames StayWell 780 Township Line Road Yardley, PA Krames On-Demand v6 Patient Education Application User Guide 2012 Krames StayWell 780 Township Line Road Yardley, PA 19067 800-203-7902 1 Table of Contents Krames On-Demand User Guide... 1 Welcome to Krames

More information

TUTORIAL: PEDIATRIC EMERGENCY MEDICINE Connect/Online

TUTORIAL: PEDIATRIC EMERGENCY MEDICINE Connect/Online TUTORIAL: PEDIATRIC EMERGENCY MEDICINE Connect/Online This tutorial will familiarize you with PEPID's Pediatric Emergency Medicine Suite for use through PEPID Connect on your browser. As a reminder, in

More information

MDGuidelines API: Topic v2 Specification 1.3

MDGuidelines API: Topic v2 Specification 1.3 MDGuidelines API: Topic v2 Specification 1.3 Date: June 27, 2017 1 Overview 1.1 Purpose and Intended Audience The purpose of this document is to provide detailed descriptions and specifications for the

More information

DOCUMENTS MADE OBSOLETE The release of this document changes only the version of EMMS Release Schedule - November pdrmonitor.

DOCUMENTS MADE OBSOLETE The release of this document changes only the version of EMMS Release Schedule - November pdrmonitor. 3.00 Draft September 2018 3.00 Final September 2018 Pre-production: Wednesday 16 November Pre-production: 26 September 2018 2016 Production: Production: Wednesday 2219 November October 2016 2018 Release

More information

Signing up for My Lahey Chart

Signing up for My Lahey Chart Signing up for My Lahey Chart What is My Lahey Chart? My Lahey Chart is a helpful service that allows you to connect with your doctor and your health information online, anytime. Using your personal computer

More information

Secure Development Guide

Secure Development Guide Secure Development Guide Oracle Health Sciences InForm 6.1.1 Part number: E72493-01 Copyright 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

Oracle User Productivity Kit Content Player

Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Oracle User Productivity Kit Content Player Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks

More information

User Guide. Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved.

User Guide. Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved. User Guide Version 1.5 Copyright 2006 by Serials Solutions, All Rights Reserved. Central Search User Guide Table of Contents Welcome to Central Search... 3 Starting Your Search... 4 Basic Search & Advanced

More information

Penetration Test Report

Penetration Test Report Penetration Test Report Feb 12, 2018 Ethnio, Inc. 6121 W SUNSET BLVD LOS angeles, CA 90028 Tel (888) 879-7439 ETHN.io Summary This document contains the most recent pen test results from our third party

More information

CASE HISTORY FORM Psychologist

CASE HISTORY FORM Psychologist STUDENT SERVICES - Living Sky School Division #202 509 Pioneer Avenue North Battleford, Sask. S9A 4A5 Phone: (306) 937-7963 Fax: (306) 445-2912 CASE HISTORY FORM Psychologist Date: Person completing form:

More information

Rockwood School District s. Online Census Verification

Rockwood School District s. Online Census Verification Rockwood School District s Online Census Verification Table of Contents 1. Online Enrollment 2. Accessing Online Census Verification and Adding New Students to Families with Existing Students 3. Navigating

More information

Lifeway Child/Adolescent Information Form

Lifeway Child/Adolescent Information Form Date / / Lifeway Child/Adolescent Information Form Patient Name: First MI Last Date of Birth: / / Gender: M F Marital Status: M S D Address: City State: Zip: Primary Contact Phone: Secondary Contact Phone:

More information

EMS WEB APP Configuration Guide

EMS WEB APP Configuration Guide EMS WEB APP Configuration Guide V44.1 Last Updated: August 14, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents CHAPTER 1: EMS Web App

More information

Patient Portal Help March 1, 2012

Patient Portal Help March 1, 2012 Patient Portal Help March 1, 2012 Copyright This documentation and related technology are governed by a user agreement and shall remain the sole and exclusive property of Intuit Health. No parts of this

More information

What is MyPalomarHealth and how will it benefit my health care? How do I access my health information on MyPalomarHealth?

What is MyPalomarHealth and how will it benefit my health care? How do I access my health information on MyPalomarHealth? MyPalomarHealth FAQs Enrollment Questions What is MyPalomarHealth and how will it benefit my health care? MyPalomarHealth offers patients personalized and secure on-line access to portions of their medical

More information

New Student-Athlete Checklist

New Student-Athlete Checklist New Student-Athlete Checklist Pre-Participation Physical (must use form attached) Complete Athletic Training Forms online (see attached instructions) BESS/SCAT/ImPact Test (when arrive) Should you have

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

More information

Provider Information Management System (PIMS) User Guide

Provider Information Management System (PIMS) User Guide Provider Information Management System (PIMS) User Guide v2018_0807 Overview The Provider Information Management System (PIMS) application is used to manage and maintain provider accounts. It is accessed

More information

Provider Information Management System (PIMS) User Guide

Provider Information Management System (PIMS) User Guide Provider Information Management System (PIMS) User Guide v2017_1016 Overview The Provider Information Management System (PIMS) application is used to maintain provider accounts. It is accessed online from

More information

Application Design and Development: October 30

Application Design and Development: October 30 M149: Database Systems Winter 2018 Lecturer: Panagiotis Liakos Application Design and Development: October 30 1 Applications Programs and User Interfaces very few people use a query language to interact

More information

DCLI User's Guide. Data Center Command-Line Interface

DCLI User's Guide. Data Center Command-Line Interface Data Center Command-Line Interface 2.10.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

Infoblox Authenticated DHCP

Infoblox Authenticated DHCP Infoblox Authenticated DHCP Unified Visitor Management amigopod Technical Note Revision 1.1 5 July 2010 United States of America +1 (888) 590-0882 Europe, Middle East & Asia +34 91 766 57 22 Australia

More information

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE

HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HOMELESS INDIVIDUALS AND FAMILIES INFORMATION SYSTEM HIFIS 4.0 TECHNICAL ARCHITECTURE AND DEPLOYMENT REFERENCE HIFIS Development Team May 16, 2014 Contents INTRODUCTION... 2 HIFIS 4 SYSTEM DESIGN... 3

More information

Serverless Single Page Web Apps, Part Four. CSCI 5828: Foundations of Software Engineering Lecture 24 11/10/2016

Serverless Single Page Web Apps, Part Four. CSCI 5828: Foundations of Software Engineering Lecture 24 11/10/2016 Serverless Single Page Web Apps, Part Four CSCI 5828: Foundations of Software Engineering Lecture 24 11/10/2016 1 Goals Cover Chapter 4 of Serverless Single Page Web Apps by Ben Rady Present the issues

More information

Online Dangers. According to the National Center for Missing and Exploited Children.

Online Dangers. According to the National Center for Missing and Exploited Children. Online Dangers One in five youths say they have received a sexual approach or solicitation. One in 33 had received an aggressive sexual solicitation. One in four had unwanted exposure to sexually explicit

More information

StorageGRID Webscale NAS Bridge Management API Guide

StorageGRID Webscale NAS Bridge Management API Guide StorageGRID Webscale NAS Bridge 2.0.3 Management API Guide January 2018 215-12414_B0 doccomments@netapp.com Table of Contents 3 Contents Understanding the NAS Bridge management API... 4 RESTful web services

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions What is FollowMyHealth? FollowMyHealth offers you personalized and secure online access to important information in your electronic medical record. FollowMyHealth is available

More information

(10/17) PATIENT GUIDE

(10/17) PATIENT GUIDE (10/17) PATIENT GUIDE Welcome to Parkview MyChart! mychart.parkview.com Welcome to your one story of care. As a patient of Parkview, you now have access to your health information from the convenience

More information

CHILDREN S HISTORY FORM

CHILDREN S HISTORY FORM NEUROPSYCHOLOGY ASSOCIATES, P.C. 6232 N. 7TH ST., STE 100 Phoenix, Arizona 85014 Office (602) 230-8324 Fax (602) 274-7402 CHILDREN S HISTORY FORM INSTRUCTIONS TO PARENTS: Please complete this form and

More information

Parent Portal. User Manual

Parent Portal. User Manual Parent Portal User Manual GENESIS STUDENT INFORMATION SYSTEM PARENT PORTAL Introduction 3 Logging In & Logging Out 4 Student Summary Dashboard The Dashboard Selecting a Student Attendance Daily Attendance

More information

Oracle Communications WebRTC Session Controller

Oracle Communications WebRTC Session Controller Oracle Communications WebRTC Session Controller Security Guide Release 7.0 E40975-01 November 2013 Oracle Communications WebRTC Session Controller Security Guide, Release 7.0 E40975-01 Copyright 2013,

More information

CRM Service Wrapper User Guide

CRM Service Wrapper User Guide Summary This document details the usage of the CRM Service Wrapper by xrm. The service wrapper allows you to communicate with a Microsoft Dynamics CRM application (called CRM for convenience in this document)

More information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information

What is New in MyChart? My Medical Record Health Preferences Settings Appointments and Visits Visits Schedule an Appointment Update Information What is New in MyChart? On August 26th, we will be upgrading and changing the look and feel to our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when

More information

Nintex Forms 2010 Help

Nintex Forms 2010 Help Nintex Forms 2010 Help Last updated: Monday, April 20, 2015 1 Administration and Configuration 1.1 Licensing settings 1.2 Activating Nintex Forms 1.3 Web Application activation settings 1.4 Manage device

More information

Texas Department of Family and Protective Services. Residential Child Care Contractors

Texas Department of Family and Protective Services. Residential Child Care Contractors Texas Department of Family and Protective Services Residential Child Care Contractors Child Placement Vacancy Database User Guide Only Providers with a Department of Family and Protective Services (DFPS)

More information

Usability Testing. Cha Kang & Zach Pease

Usability Testing. Cha Kang & Zach Pease Usability Testing Cha Kang & Zach Pease Introduction In the design of a resource for those suffering from Post Traumatic Stress Disorder, great care must be given to maintaining a sensitivity to the unique

More information

Jquery.ajax Call Returns Status Code Of 200 But Fires Jquery Error

Jquery.ajax Call Returns Status Code Of 200 But Fires Jquery Error Jquery.ajax Call Returns Status Code Of 200 But Fires Jquery Error The request returns http 200 OK, but the xhr status is 0, error. jquery Ajax Request to get JSON data fires error event to make an ajax

More information

Continuity of Care Document Redesign

Continuity of Care Document Redesign Continuity of Care Document Redesign Submitted to the Office of the National Coordinator for Health Information Technology via healthdesign.challenge.gov Created by Jeff Flahaven, Senior UX Designer 12/1/2012

More information

Xerox Audio Documents App

Xerox Audio Documents App Xerox Audio Documents App Additional information, if needed, on one or more lines Month 00, 0000 Information Assurance Disclosure 2018 Xerox Corporation. All rights reserved. Xerox, Xerox,

More information

The Office of Information and Organizational Systems. MCPS Online Administrative Student Information System (OASIS) Emergency Card.

The Office of Information and Organizational Systems. MCPS Online Administrative Student Information System (OASIS) Emergency Card. The Office of Information and Organizational Systems MCPS Online Administrative Student Information System (OASIS) Emergency Card User Manual July 10, 2007 Table of Contents 1 Introduction... 1 2 Add Student

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

Medical Office Workflow

Medical Office Workflow Medical Office Workflow WE RE READY TO HELP! For customer support, please call us at 1-800-222-9570 or visit our online technical support center at evolvesupport.elsevier.com to access self-service options

More information

CSCE 120: Learning To Code

CSCE 120: Learning To Code CSCE 120: Learning To Code Module 11.0: Consuming Data I Introduction to Ajax This module is designed to familiarize you with web services and web APIs and how to connect to such services and consume and

More information

DRX Platform Manager DRX Platform Manager

DRX Platform Manager DRX Platform Manager DRX Platform Manager 1 P a g e Table of Contents DRX Platform Manager... 1 Introduction to the DRX Platform Manager... 4 Getting Started... 4 Login... 4 Platform Manager... 4 DRX Application Configuration

More information

Go to and follow the link to log into the patient portal

Go to  and follow the link to log into the patient portal PLEASE NOTE: WHEN YOU SIGN UP ON THE PATIENT PROTAL YOU ARE SIGNING UP AS THE PATIENT YOUR CHILD. IF YOU HAVE MORE THAN ONE CHILD WHO IS A PATIENT AT OUR PRACTICE OR WOULD LIKE TO SIGN UP AS THE PARENT

More information

Boolean Data-Type. Boolean Data Type (false, true) i.e. 3/6/2018. The type bool is also described as being an integer: bool bflag; bflag = true;

Boolean Data-Type. Boolean Data Type (false, true) i.e. 3/6/2018. The type bool is also described as being an integer: bool bflag; bflag = true; Programming in C++ If Statements If the sun is shining Choice Statements if (the sun is shining) go to the beach; True Beach False Class go to class; End If 2 1 Boolean Data Type (false, ) i.e. bool bflag;

More information

A Simple Course Management Website

A Simple Course Management Website A Simple Course Management Website A Senior Project Presented to The Faculty of the Computer Engineering Department California Polytechnic State University, San Luis Obispo In Partial Fulfillment Of the

More information

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface

DCLI User's Guide. Modified on 20 SEP 2018 Data Center Command-Line Interface Modified on 20 SEP 2018 Data Center Command-Line Interface 2.10.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

Medical Office Workflow

Medical Office Workflow Medical Office Workflow WE RE READY TO HELP! For customer support, please call us at 1-800-222-9570 or visit our online technical support center at evolvesupport.elsevier.com to access self-service options

More information

18B. Integrating Oracle Commerce Cloud and Oracle Responsys

18B. Integrating Oracle Commerce Cloud and Oracle Responsys 18B Integrating Oracle Commerce Cloud and Oracle Responsys Integrating Oracle Commerce Cloud and Oracle Responsys Product version: 18B Release date: 4-26-18 Document identifier: CCMarketingInteg1804261435

More information

Using OAuth 2.0 to Access ionbiz APIs

Using OAuth 2.0 to Access ionbiz APIs Using OAuth 2.0 to Access ionbiz APIs ionbiz APIs use the OAuth 2.0 protocol for authentication and authorization. ionbiz supports common OAuth 2.0 scenarios such as those for web server, installed, and

More information

Minnesota Health Care Claims Reporting System Data Element Recommendations Prepared by the Maine Health Information Center Data Submission Process

Minnesota Health Care Claims Reporting System Data Element Recommendations Prepared by the Maine Health Information Center Data Submission Process Three data types will be submitted to MHIC s NCDMS data aggregation system: Eligibility one record for each covered member during the eligibility month Medical claims one record for each paid claim service

More information

New Student-Athlete Checklist

New Student-Athlete Checklist New Student-Athlete Checklist Pre-Participation Physical (must use form attached) Verify Primary Insurance(see attached instructions) Complete Athletic Training Forms online (see attached instructions)

More information

Submit a DFPS Help Request

Submit a DFPS Help Request DFPS Submit a DFPS Help Request A step-by-step guide for Designated IAM Representatives Department of Family and Protective Services 12/11/2014 Contents Submit a Help Request... 2 Roles... 2 Pre-Condition...

More information

Edition. MONTEREY COUNTY BEHAVIORAL HEALTH MD User Guide

Edition. MONTEREY COUNTY BEHAVIORAL HEALTH MD User Guide Edition 1 MONTEREY COUNTY BEHAVIORAL HEALTH MD User Guide i Table of Content OderConnect/InfoScriber Registration CH1 Pg.2 Sign In to MyAvatar CH2..Pg.10 Sync OrderConnect Password CH3.Pg.14 Client Look

More information

Certified Tester Foundation Level Performance Testing Sample Exam Questions

Certified Tester Foundation Level Performance Testing Sample Exam Questions International Software Testing Qualifications Board Certified Tester Foundation Level Performance Testing Sample Exam Questions Version 2018 Provided by American Software Testing Qualifications Board and

More information

Frequently Asked Questions. My life. My healthcare. MyChart.

Frequently Asked Questions. My life. My healthcare. MyChart. Frequently Asked Questions My life. My healthcare. MyChart. My life. My healthcare. MyChart. What is MyChart? MyChart offers patients personalized and secure online access to portions of their medical

More information

Personal Information. New Profile Icon

Personal Information. New Profile Icon What is New in MyChart? On December 8th, we will be upgrading our MyChart patient portal site. We would like to make you aware of a few differences that you will see, when you sign into your MyChart account.

More information

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies

CNIT 129S: Securing Web Applications. Ch 3: Web Application Technologies CNIT 129S: Securing Web Applications Ch 3: Web Application Technologies HTTP Hypertext Transfer Protocol (HTTP) Connectionless protocol Client sends an HTTP request to a Web server Gets an HTTP response

More information

IBM Security Access Manager Version January Federation Administration topics IBM

IBM Security Access Manager Version January Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM IBM Security Access Manager Version 9.0.2.1 January 2017 Federation Administration topics IBM ii IBM Security

More information

Oracle Policy Automation The modern enterprise advice platform

Oracle Policy Automation The modern enterprise advice platform Oracle Policy Automation The modern enterprise advice platform Release features and benefits (November 2017) v1.01 Program agenda 1 2 3 Overview of Oracle Policy Automation New features in release For

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

Compliance Alert. SBC is required for the associated high deductible health plan (HDHP) which may include mention of the employer HSA contributions.

Compliance Alert. SBC is required for the associated high deductible health plan (HDHP) which may include mention of the employer HSA contributions. Compliance Alert Summary of Benefits and Coverage (SBC) June 30, 2014 Quick Facts: A Summary of Benefits and Coverage (SBC) is required for each health plan (generally meaning major medical). The SBC presents

More information

DATABASE ADMINISTRATOR

DATABASE ADMINISTRATOR DATABASE ADMINISTRATOR Department FLSA Status Reports To Supervises Information Technology Exempt IT Director N/A DISTINGUISHING CHARACTERISTICS: The principal function of an employee in this class is

More information

DCLI User's Guide. Data Center Command-Line Interface 2.9.1

DCLI User's Guide. Data Center Command-Line Interface 2.9.1 Data Center Command-Line Interface 2.9.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about this documentation, submit

More information

Early Years - Two Year Old Funding Citizen Portal

Early Years - Two Year Old Funding Citizen Portal Early Years - Two Year Old Funding Citizen Portal last updated for the Summer 2017 (3.63) release Handbook Revision History Version Published on Summer 2017 (3.63) - 1.0 18/07/2017 Doc Ref Early Years

More information

2017 OMFRC Scenario #1 - "What goes up, must come down"

2017 OMFRC Scenario #1 - What goes up, must come down CYCLE: TEAM #: Score Sheet for Patient #1 - "INFERIOR INJURIES" SCENE/PRIMARY SURVEY 1 ß Did the team TAKE CHARGE of the situation? 2 ß Did the team wear protective GLOVES? 3 ß Did the team ASSESS for

More information

An Interactive User Interface for Drug Labeling to Improve Readability and Decision-Making

An Interactive User Interface for Drug Labeling to Improve Readability and Decision-Making An Interactive User Interface for Drug Labeling to Improve Readability and Decision-Making Hamed Abedtash 1, PharmD, Jon D. Duke, MD, MSc 2 1 School of Informatics and Computing, Indiana University, Indianapolis,

More information

Accessing the Online Application

Accessing the Online Application Accessing the Online Application The online application is available in the onboard community. Prospective families must have a username and password in order to access the community. Admissions Managers

More information

Patient Quick Start Guide

Patient Quick Start Guide Patient Quick Start Guide Welcome to MyChart. 2 Sign Up for MyChart. 3 Proxy Access to MyChart.3 Log in to MyChart.4 Messaging..5 View messages from your care provider..5 Ask a question.... 6 Visits..

More information

User Manual. phr.mtbc.com

User Manual. phr.mtbc.com User Manual Table of Contents Introduction Appointments Appointment History Claims History CCDA Report Demographics Health History Lab Reports Online Payment Secure Messages Health Recommendation Patient

More information

DCLI User's Guide. Data Center Command-Line Interface 2.7.0

DCLI User's Guide. Data Center Command-Line Interface 2.7.0 Data Center Command-Line Interface 2.7.0 You can find the most up-to-date technical documentation on the VMware Web site at: https://docs.vmware.com/ The VMware Web site also provides the latest product

More information

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0

Ninox API. Ninox API Page 1 of 15. Ninox Version Document version 1.0.0 Ninox API Ninox Version 2.3.4 Document version 1.0.0 Ninox 2.3.4 API 1.0.0 Page 1 of 15 Table of Contents Introduction 3 Obtain an API Key 3 Zapier 4 Ninox REST API 5 Authentication 5 Content-Type 5 Get

More information

eschoolplus+ Behavior (Discipline) Training Guide

eschoolplus+ Behavior (Discipline) Training Guide eschoolplus+ Version 4.0 July 2018 Arkansas Public School Computer Network This page intentionally left blank Page 2 of 77 Table of Contents Discipline Overview... 5 Behavior (Discipline) Widget... 6 Behavior

More information

Synchronization Agent Configuration Guide

Synchronization Agent Configuration Guide SafeNet Authentication Service Synchronization Agent Configuration Guide 1 Document Information Document Part Number 007-012848-001, Rev. B Release Date March 2015 Applicability This version of the SAS

More information

Table of Contents. Developer Manual...1

Table of Contents. Developer Manual...1 Table of Contents Developer Manual...1 API...2 API Overview...2 API Basics: URL, Methods, Return Formats, Authentication...3 API Errors...4 API Response Examples...6 Get Articles in a Category...6 Get

More information

ASP.NET MVC Training

ASP.NET MVC Training TRELLISSOFT ASP.NET MVC Training About This Course: Audience(s): Developers Technology: Visual Studio Duration: 6 days (48 Hours) Language(s): English Overview In this course, students will learn to develop

More information

Table of Contents. Hypass Online.doc 2 of 90 12/26/01 11:25 AM

Table of Contents. Hypass Online.doc 2 of 90 12/26/01 11:25 AM Table of Contents Table of Contents... 2 Security Access... 3 Home Page...11 News & Information...12 User Profile...13 Notepad...18 Parts Data...21 Search by Assemblies...21 Search for Part using Truck

More information

Level 3 Media Portal API Guide

Level 3 Media Portal API Guide Level 3 Media Portal API Guide Updated June 9, 2017 Contents Media Web Services (API)... 1 Getting Started with Media Portal APIs... 3 Using APIs... 3 Determining the Access Group ID... 3 API Interfaces...

More information

eschoolplus+ Medical Training Guide

eschoolplus+ Medical Training Guide eschoolplus+ Medical Training Guide Version 3.1 August 2016 Arkansas Public School Computer Network This page intentionally left blank Page 2 of 101 Table of Contents Student Medical Records Overview...

More information

USCCB/MRS Migration & Refugee Information System Resource Guide

USCCB/MRS Migration & Refugee Information System Resource Guide USCCB/MRS Migration & Refugee Information System Resource Guide R&P Remote Placement Program (RPP) Guide Pre-Arrival Case Management This MRIS Instructional Guide highlights the various requirements in

More information

ELBOW - New Patient Intake Form

ELBOW - New Patient Intake Form Place label here Kristofer J. Jones, M.D. ELBOW - New Patient Intake Form Name Date Occupation _ Age DOB 1) Were you referred to this office? No Yes, Name 2) Who is your Internist or Primary Care Physician?

More information

RKN 2015 Application Layer Short Summary

RKN 2015 Application Layer Short Summary RKN 2015 Application Layer Short Summary HTTP standard version now: 1.1 (former 1.0 HTTP /2.0 in draft form, already used HTTP Requests Headers and body counterpart: answer Safe methods (requests): GET,

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc.

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc. CIOC API User Guide Release Online Resources 3.7 / Client Tracker 3.2 Katherine Lambacher, KCL Software Solutions Inc. September 03, 2015 Contents 1 CIOC Online Resources API Introduction 1 1.1 Available

More information

Genesis Parent Portal User Guide

Genesis Parent Portal User Guide PARENT PORTAL Introduction 3 Logging In & Logging Out 4 Select Language 6 Top Tabs 7 Student Summary - The Dashboard Selecting a Student Assessments Standardized Test Scores 13 Attendance Daily Attendance

More information

CompuScholar, Inc. Alignment to Utah's Web Development I Standards

CompuScholar, Inc. Alignment to Utah's Web Development I Standards Course Title: KidCoder: Web Design Course ISBN: 978-0-9887070-3-0 Course Year: 2015 CompuScholar, Inc. Alignment to Utah's Web Development I Standards Note: Citation(s) listed may represent a subset of

More information