Informer 5 API How to get connected and start integrating

Slides:



Advertisements
Similar presentations
REST (Representational State Transfer)
Advertisements

With ColdBox and REST. Co-Manager of IECFUG Flex, ColdFusion, JavaScript Developer A member of Team ColdBoxPresident of Sercossa Inc.
Overview of Twitter API Nathan Liu. Twitter API Essentials Twitter API is a Representational State Transfer(REST) style web services exposed over HTTP(S).
Live Excel PRESENTER: Brad Leupen | CTO, Entrinsik |
1Proprietary and Confidential AirVantage API – Getting started David SCIAMMA – June 13th 2014.
Peoplesoft: Building and Consuming Web Services
Integrating CRM On Demand with the E-Business Suite to Supercharge your Sales Team Presented by: Tom Connolly, Jason Lieberman Company: BizTech Session.
Page 1 ISMT E-120 Introduction to Microsoft Access & Relational Databases The Influence of Software and Hardware Technologies on Business Productivity.
RESTful Web Development With Nodejs and Express. REST Stands for REpresentational State Transfer Has the following constraints: ◦Client-Server ◦Stateless.
Using the SAS® Information Delivery Portal
What’s New? – BCS 2013 Brett Lonsdale.  Co-founder of Lightning Tools  One of the hosts on the SharePoint Pod Show  Co-organizer of SharePoint Saturday.
Introducing Reporting Services for SQL Server 2005.
CollectionSpace Service REST-based APIs June 2009 Face-to-face Aron Roberts U.C. Berkeley IST/Data Services.
Web Services XML-RPC, SOAP, REST Advanced Web-based Systems | Misbhauddin.
Python and REST Kevin Hibma. What is REST? Why REST? REST stands for Representational State Transfer. (It is sometimes spelled "ReST".) It relies on a.
MINT Working Group Jan 9-10 at Harris FBC Melbourne, FL.
REST - Introduction Based on material from InfoQ.com (Stefan Tilkov) And slides from MindTouch.com (Steve Bjorg) 1.
Introduction to the SharePoint 2013 REST API. 2 About Me SharePoint Solutions Architect at Sparkhound in Baton Rouge
DM_PPT_NP_v01 SESIP_0715_JR HDF Server HDF for the Web John Readey The HDF Group Champaign Illinois USA.
OM. Brad Gall Senior Consultant
Representational State Transfer (REST). What is REST? Network Architectural style Overview: –Resources are defined and addressed –Transmits domain-specific.
GEO PLACES EXPLORER PRESENTED BY KHUSHBOO BAGHADIYA SUMANA VENKATESH.
Web Server Design Week 15 Old Dominion University Department of Computer Science CS 495/595 Spring 2010 Martin Klein 4/21/10.
Aleph Restful APIs Ori Miller June 2012.
International Planetary Data Alliance Registry Development and Coordination Project Report 7 th IPDA Steering Committee Meeting July 13, 2012.
THE API AN INTRODUCTION TO THE MINISTRYPLATFORM APPLICATION PROGRAMMING INTERFACE STEPHEN WAREHAM.
Use Outlook Task API to access tasks stored on user’s mailbox. These REST API’s are  Simple to use.  Supports CRUD.  JSON structured.  OAuth 2.0.
Real-Time Dashboards on Power BI
National College of Science & Information Technology.
Data Models for Web Applications
Developers Introduction to the Power BI Platform.
Via the REST API and Power BI Embedded Jan Pieter Posthuma
Business Directory REST API
API (Application Program Interface)
Statistical Information Systems Introducing SIS tool .Stat
REST: Web Services Abel Sanchez.
Beyond the BDC\BCS Model
Node.js Express Web Services
Enhancing Web Map Performance in ArcGIS Online
CMPE 280 Web UI Design and Development October 24 Class Meeting
Applied Cyber Infrastructure Concepts Fall 2017
Accessing Spatial Information from MaineDOT
Office 365 Development.
Testing REST IPA using POSTMAN
WEB API.
Housing application Presented by Phil Callaghan MD Caltech CRM
02 | Web API Basic Design Jeremy Likness | Principal Architect
Chapter 9 Web Services: JAX-RPC, WSDL, XML Schema, and SOAP
Building Self Describing Web APIs
SDWIS Prime REST APIs Elinor Keith
SIF 3.x Concepts & Terms, xPress & RicOne API
Welcome to SQL Saturday Denmark
$, $$, $$$ API testing Edition
Testing RESTful Web APIs
Tony Ardura, Austin Burnett, Rex Lacy, Shawn Neumann
API DOCUMENTATION Swetha Mohandas Microsoft Connect 2016
Web Server Design Week 16 Old Dominion University
REST APIs Maxwell Furman Department of MIS Fox School of Business
Visual recall of class information
Building production-ready APIs with ASP.NET Core 2.2
Microsoft Graph – Intune API’s
Python and REST Kevin Hibma.
Combining ArcGIS for Server & ArcGIS Online
Web APIs In computer programming, an application programming interface (API) is a set of subroutine definitions, protocols, and tools for building application.
Publishing image services in ArcGIS
September 12-14, 2018 Raleigh, NC.
.NET Framework V3.5+ & RESTful web services
Chengyu Sun California State University, Los Angeles
Accessing Canada's Open Data through APIs
Embedding Power BI in your application
Presentation transcript:

Informer 5 API How to get connected and start integrating Brad Leupen | Entrinsik Inc. | February 12, 2018

Overview Basic Concepts How To Connect Examples!

Basic Concepts API – Application Programming Interface. Services that allow you to access the application logic directly. REST – REpresentational State Transfer (a web-based API) Authentication – Verifying you are who you say you are Authorization – Verifying you can do what you want to do Access Token – A preauthenticated hall pass to do a specific thing in Informer

REST REST is just nouns and verbs The nouns are URLs Collections of things: /api/datasets Or individual items: /api/datasets/admin:northwind-orders The verbs are HTTP Methods and there are really just four to worry about: GET – reads an item or items PUT – updates an item DELETE – removes an item POST – creates an item or performs an action

Access Tokens View and generate them from your profile page Shortcuts to create specific types of tokens appear throughout the application Guard your tokens (especially full API tokens) Consider restricting access to certain hosts

Accessing the API View (and try!) all API endpoints using our API documentation at /documentation All visual routes are organized under the /v namespace Paste your API token into the token parameter. Postman is an excellent tool to help create REST queries

Example 1 The Embedded Chart

Example 2 The Embedded Dashboard

Example 3 The On-Demand Chart

Example 4 The Mapping Suite Query

Example 5 The On-Demand Dataset

Example 6 Accessing Users