API Migration Guide. Migrating from v1.syndication.nhschoices.nhs.uk (v1) to api.nhs.uk (Content API) Published August 2017

Size: px
Start display at page:

Download "API Migration Guide. Migrating from v1.syndication.nhschoices.nhs.uk (v1) to api.nhs.uk (Content API) Published August 2017"

Transcription

1 Migrating from v1.syndication.nhschoices.nhs.uk (v1) to api.nhs.uk (Content API) Published August 2017 Copyright 2017 Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body created by statute, also known as NHS Digital.

2 Contents Introduction 3 Migration checklist for developers 3 Authentication and headers 3 Endpoints: v1 Content API mapping 3 Behind the Headlines endpoints 4 Content API Query Parameters 4 Behind the Headlines parameters 4 Content API definitions 4 Behind the Headlines definitions 5 Error codes 7 Example responses 8 Behind the Headlines 202 response 8 Widgets 11 Copyright 2017 Health and Social Care Information Centre. 2

3 Introduction The following guide will help you migrate from our v1 API to the new Content API. If you want your NHS Choices API integration to continue working after v1 is retired, you must fully migrate it to the Content API. Any new functionality added to the NHS Choices platform will only be added to the Content API. Migration checklist for developers Register for an account at Subscribe to the All products (trial subscription) at Familiarise yourself with the new Content API syntax. Look through our API developer portal ( where you can try test-drive Content API calls. Figure out which v1 endpoints your app uses, and look up the equivalent ones in API v2 using the sections below. Update your app's code, replacing v1 calls with the Content API calls. If there's functionality missing in v2, update what you can and please contact us about the missing functionality, so we can keep track of feature requests. The use of the tracking pixel is mandatory and will need to be included on all instances, failure to do so could result in the removal of your subscription. Once you have modified and tested your code to work with the Content API, subscribe to the products you intend to use and a subscription key will be assigned to you once approved. Authentication and headers To make a REST API call, you must include request headers including the Subscription-Key header with a subscription key. All subscriptions under the Content API are available in JSON and XML and you can select your preference under the Accept header. If you do not choose an Accept header then the default output will be JSON. Header Key subscription-key Accept Header Value You can view your subscription keys at: application/json application/xml Endpoints: v1 Content API mapping The endpoints for the Content API have now changed and you can see how they have changed in the table below. All v1 endpoints are listed in the left column, and the equivalent v2 endpoints are in the right column. Copyright 2017 Health and Social Care Information Centre. 3

4 Behind the Headlines endpoints Method Path (v1.syndication.nhschoices.nhs.uk) All articles GET /bth/articles/all /news Articles by date Articles since GET GET /bth/articles/year/month Example: /bth/articles/2017/january /bth/articlessince/year/month/day Example: bth/articlessince/2017/1/1 Categories GET bth/categories/category Example: bth/categories/diabetes Article GET /bth/articles/year/month/articleurl Example: /bth/articles/2017/august/reports-that-womenhave-more-stamina-look-a-little-weak Content API Path (api.nhs.uk) /news/?startdate=yyyy-mm- DD&endDate=YYYY-MM-DD Example: /news/?startdate= &endDate= /news/?startdate=yyyy-mm- DD Example: /news/?startdate= /news/category Example: /news/diabetes /news/category/articleurl Example: /news/lifestyle-andexercise/reports-women-have-more-staminalook-little-weak The Content API uses the same URL structure as the front-facing website. To view the API replace www with api in the NHS Choices URL. For example, to get to the news listing page at you would call api.nhs.uk/news. Content API Query Parameters To take advantage of the new features introduced in the Content API you will need to get used to the query parameters available. Behind the Headlines parameters Parameter Type Value Description startdate string YYYY-MM-DD Filters articles after a specific date enddate string YYYY-MM-DD Filters articles before a specific date order string newest oldest Order by newest or oldest published date page string number Pagination Content API definitions The Content API uses the Schema.org vocabulary to make it easier for developers who are used to using the shared collection of schemas. As a result, there will be discrepancies between the definitions on and the Content API. Copyright 2017 Health and Social Care Information Centre. 4

5 The following tables show a comparison between the definitions in XML and JSON under each endpoint. Behind the Headlines definitions All articles Articles by date Articles since Categories Article All articles Article title Article URL XML JSON Content API XML & JSON significantname significant url Published Date - - significant mainentityofpage-> datepublished Modified Date - - significant mainentityofpage-> datemodified Keywords - - significant mainentityofpage-> keywords Tracking pixel - - interactionstatistic-> interactionservice-> url Articles by date Article title Article URL XML JSON Content API XML & JSON significantname significant url Published Date - - significant mainentityofpage-> datepublished Modified Date - - significant mainentityofpage-> datemodified Keywords - - significant mainentityofpage-> keywords Tracking pixel - - interactionstatistic-> interactionservice-> url Articles since Article title XML Entry-> JSON Content API XML & JSON - significant name Article URL Entry-> - significant url Copyright 2017 Health and Social Care Information Centre. 5

6 Published Date Modified Date Summary Entry-> published Entry-> updated Entry-> summary - significant mainentityofpage-> datepublished - significant mainentityofpage-> datemodified - significant description Keywords - - significant mainentityofpage-> keywords Tracking pixel tracking - interactionstatistic-> interactionservice-> url Categories Article title Article URL XML JSON Content API XML & JSON significantname significant url Published Date - - significant mainentityofpage-> datepublished Modified Date - - significant mainentityofpage-> datemodified Keywords - - significant mainentityofpage-> keywords Tracking pixel - - interactionstatistic-> interactionservice-> url Article XML JSON Content API XML & JSON Article title title - headline Copyright holder rights - Copyrightholder-> name Date modified updated - datemodified Author logo logo - author-> logo Author name Author-> name - author-> name Author URL Author-> uri - author-> url Author Author-> - author-> Article URL link - url Tracking pixel tracking - interactionstatistic-> interactionservice-> url Copyright 2017 Health and Social Care Information Centre. 6

7 Headline entry-> title - headline Summary entry-> summary - description Published date entry-> published - datepublished Modified date entry-> updated - datemodified Categories entry-> category - keywords Content body entry-> content - maincontentofpage-> text Copyright entry-> rights - Copyrightholder-> name Links to headlines Links to science Analysed by entry-> bthns:linkstoheadlines entry-> bthns:linkstoscience entry-> bthns:analysedby - related headline related url related publication - citation-> headline citation-> url citation-> publication - contributor Edited by entry-> bthns:editedby - author-> name Error codes The Content API follows the same error codes as. Code Status Description 200 OK The representation, as served, is complete and correct 400 Bad Request The client did not send a correctly structured request (can be used to indicate parameters were supplied in an unsupported combination, but we generally prefer to indicate supported combinations by encoding parameters into URI path segments) 401 Unauthorized The user has not supplied valid credentials (in the case of Outbound Syndication, an API key) 404 Not found There is no resource at this address 405 Method not allowed An invalid HTTP method has been used (for this project being outbound only use of GET is indicated) 406 Unacceptable The user has attempted to request a representation of this resource that is not available for the given URI (for example, trying to request an application/json representation of an Atom-based feed) 410 Gone The resource requested is no longer available and no forwarding address is available (for example a comment that has been Copyright 2017 Health and Social Care Information Centre. 7

8 500 Internal Server Error reported as inappropriate and subsequently removed) There was a genuine unhandled exception on the server. The server should have logged this. Example responses Here are some example responses for a successful call. Behind the Headlines 202 response All pages and Topic "interactionstatistic": [ "interactionservice": "url": "<img style='border: 0; width: 1px; height: 1px;' alt='' src=' =/news&wt.cg_n=syndication&wt.cg_s=behindtheheadlines&synduserid=xxx&syndreviewdat e= t11:53'/>", "@type": "Website", "name": "Webtrends tracking pixel" "@type": "InteractionCounter" "contributor": "Bazian", "relatedlink": [ "url": " "linkrelationship": "Pagination", "name": "Next Page", "description": "Link to Next Page" "url": " "linkrelationship": "Pagination", "name": "Last Page", "description": "Link to Last Page" "url": " "linkrelationship": "Pagination", "name": "First Page", "description": "Link to First Page" "url": " "linkrelationship": "Self", "name": "Self", "description": "Link to nhs.uk Page" Copyright 2017 Health and Social Care Information Centre. 8

9 "license": " "author": "url": " "logo": " " ": "Organization", "name": "NHS Choices" "url": " "datemodified": " T14:54:57.124Z", "copyrightholder": "name": "Crown Copyright", "Organization" "significantlink": [ "name": "Could discovery of 'fat switch' cure obesity? ", "url": " "linkrelationship": "Result", "mainentityofpage": "keywords": [ "Obesity" "datemodified": " T20:10:47.069Z", "@type": "MedicalWebPage", "datepublished": " T00:00:00Z" "description": "\"Obesity cure possible after discovery of fat 'switch',\" is the somewhat premature headline in The Daily Telegraph. Researchers have identified a \"biological switch\" that controls when fat cells convert fat into energy for the body " "name": "More older adults 'may benefit from taking statins,' study reports", "url": " "linkrelationship": "Result", "mainentityofpage": "keywords": [ "Heart and lungs" "datemodified": " T20:10:46.657Z", "@type": "MedicalWebPage", "datepublished": " T00:00:00Z" "description": "\"Nearly all men over 60 and women over 75 eligible for statins, analysis suggests,\" The Guardian reports. This is the finding of a study that aimed to see how many people in England " "@context": " "@type": "SearchResultsPage" Copyright 2017 Health and Social Care Information Centre. 9

10 Specific page "datemodified": " T20:10:46.657Z", "interactionstatistic": [ "interactionservice": "url": "<img style='border: 0; width: 1px; height: 1px;' alt='' src=' =/news&wt.cg_n=syndication&wt.cg_s=behindtheheadlines&synduserid=xxx&syndreviewdat e= t12:05'/>", "@type": "Website", "name": "Webtrends tracking pixel" "@type": "InteractionCounter" "description": "\"Nearly all men over 60 and women over 75 eligible for statins, analysis suggests,\" The Guardian reports. This is the finding of a study that aimed to see how many people in England ", "license": " "author": "url": " "logo": " " ": "webservices@nhschoices.nhs.uk", "@type": "Organization", "name": "NHS Choices" "headline": "More older adults 'may benefit from taking statins,' study reports", "citation": [ "mainentityofpage": "headline": "Application of the 2014 NICE cholesterol guidelines in the English population: a cross-sectional analysis", "url": " "publication": "British Journal of General Practice. Published online July ", "@type": "WebPage", "author": "@type": "Person", "name": "Ueda P, Lung TW, Clarke P, Danaei G." "@type": "CreativeWork" "datepublished": " T00:00:00Z", "keywords": [ "Heart and lungs" "copyrightholder": "name": "Crown Copyright", "@type": "Organization" "url": " "maincontentofpage": [ "position": 1, "@type": "WebPageElement", "name": "markdown", "text": "<p>\"nearly all men over 60 and women over 75 eligible for Copyright 2017 Health and Social Care Information Centre. 10

11 statins, analysis suggests,\" The Guardian reports. </p>\n\n<p>this is the finding of a study that aimed to see how many people in England would qualify for statin use if the 2014 NICE guidelines for statin therapy in adults were followed. </p>\n\n<p><a href=\"/conditions/cholesterol-lowering-medicinesstatins/pages/introduction.aspx\">statins</a> are drugs designed to lower <a href=\"/conditions/cholesterol/pages/introduction.aspx\">cholesterol</a>, and in turn reduce the risk of a person developing a..." "contributor": "Bazian", "@context": " "@type": "WebPage", "relatedlink": [ "mainentityofpage": "headline": "Nearly all men over 60 and women over 75 eligible for statins, analysis suggests", "url": " "@type": "WebPage", "publication": "The Guardian" "linkrelationship": "Links to the Headlines", "description": "Nearly all men over 60 and women over 75 eligible for statins, analysis suggests" "mainentityofpage": "headline": "Statins should be made available for majority of over 60s, study claims", "url": " "@type": "WebPage", "publication": "ITV News" "linkrelationship": "Links to the Headlines", "description": "Statins should be made available for majority of over 60s, study claims" ] Widgets The widgets we have on offer are being updated to incorporate the Content API. The new widgets will require an account to the API Developer Portal (developer.api.nhs.uk). To view a list of widgets go to Copyright 2017 Health and Social Care Information Centre. 11

LUCITY REST API INTRODUCTION AND CORE CONCEPTS

LUCITY REST API INTRODUCTION AND CORE CONCEPTS LUCITY REST API INTRODUCTION AND CORE CONCEPTS REST API OFFERINGS Lucity Citizen Portal REST API Lucity REST API Both products are included in our REST API Historically we also offered a COM API and a.net

More information

Reviewing the API Documentation

Reviewing the API Documentation About the Cisco APIC-EM API Documentation, page 1 Testing the Cisco APIC-EM APIs, page 6 About the Cisco APIC-EM API Documentation Cisco APIC-EM controller provides interactive, northbound Representational

More information

Release Notes Tripolis Dialogue

Release Notes Tripolis Dialogue Release Notes Tripolis Dialogue Version 3.23 September 2016 1 TABLE OF CONTENTS Improvements and features 3 REST API API 3.0 3 TImezone support for campaigns 4 Campaign node details in preview 5 Changes

More information

REST SERVICE. Web Services API Version 1.5

REST SERVICE. Web Services API Version 1.5 REST SERVICE Web Services API Version 1.5 The information contained within this document is the property of PageOne Communications Ltd and may not be copied used or disclosed in whole or in part, except

More information

Book as Platform: Linking Data to Build a Better Book

Book as Platform: Linking Data to Build a Better Book #nisonfais Building Smarter Books in Browsers with RDFa, Schema.org, & Linked Data: Leveraging Standards & Tools in the Creation of Semantically-Enhanced Reading Systems Jason A. Clark @jaclark Book as

More information

Nick Terkay CSCI 7818 Web Services 11/16/2006

Nick Terkay CSCI 7818 Web Services 11/16/2006 Nick Terkay CSCI 7818 Web Services 11/16/2006 Ning? Start-up co-founded by Marc Andreeson, the co- founder of Netscape. October 2005 Ning is an online platform for painlessly creating web apps in a jiffy.

More information

CouriersPlease Coupon Calculator API Documentation

CouriersPlease Coupon Calculator API Documentation CouriersPlease Coupon Calculator API Documentation CouriersPlease API Version: 1.0.0 1. VERSION CONTROL Version Date Notes Author 1.0.0 07/07/2016 Initial version. Jeff Embro (CouriersPlease) 1.0.1 26/10/2016

More information

Guide Swish QR Code specification

Guide Swish QR Code specification Version 1.6 Guide Swish QR Code specification Integration Guide Datum: 2017/07/07 Table of content 1 Introduction... 3 2 Payment flows... 3 2.1 Swish C2B flow with QR code... 3 3 Create QR code via getswish.se...

More information

CouriersPlease International Quote API Documentation

CouriersPlease International Quote API Documentation CouriersPlease International Quote API Documentation CouriersPlease API Version: 1.0.0 1. VERSION CONTROL Version Date Notes Author 1.0.0 10/06/2016 Initial version. Jeff Embro (CouriersPlease) 1.0.1 16/06/2016

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

JSON-LD and MongoDB. Gregg Kellogg. Powering Linked Web Monday, August 20, 12

JSON-LD and MongoDB. Gregg Kellogg. Powering Linked Web Monday, August 20, 12 JSON-LD and MongoDB Powering Linked Web Apps Gregg Kellogg gregg@greggkellogg.net @gkellogg JSON-LD and Mongo JSON-LD graph expression in JSON MongoDB easily query JSON documents Together efficient graph

More information

API Reference (Contract Management)

API Reference (Contract Management) FUJITSU Cloud Service K5 IaaS API Reference (Contract Management) Version 1.5 FUJITSU LIMITED All Rights Reserved, Copyright Fujitsu Limited 2016 K5IA-DC-M-001-001E Preface Structure of the manuals Manual

More information

UReport USSD application Documentation

UReport USSD application Documentation UReport USSD application Documentation Release 0.1.0 Praekelt Foundation June 07, 2014 Contents 1 UReport JSON HTTP API 3 1.1 Contents................................................. 3 1.2 Response format

More information

TAXII 2.0 Specification Pre Draft

TAXII 2.0 Specification Pre Draft TAXII 2.0 Specification Pre Draft Current Status/Intent This document serves to gain consensus on pre draft concepts of TAXII 2.0. Please feel free to poke holes and comment! Overview TAXII is an open

More information

Shadow Health as an LTI Provider

Shadow Health as an LTI Provider Shadow Health as an LTI Provider Table of Contents 1. Getting Started 2. Getting Integrated 3. Need Help? Troubleshooting Guide (includes potential error messages) Tutorial: Blackboard Learn Registering

More information

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 USER S GUIDE Alloy Navigator API Integration with External Systems Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 Alloy Software Incorporated 88 Park Avenue, Unit 2B, Nutley, NJ 07110

More information

Issue No. Date Description of Changes Initial issue Added basic authentication

Issue No. Date Description of Changes Initial issue Added basic authentication Department: Subject: IT API Documentation Revision History: Issue No. Date Description of Changes 1.0 04.18.17 Initial issue 1.1 05.11.17 Added basic authentication Related Documents: Page 1 of 28 Classification

More information

NHS STU3 Capability Statement Profile Design

NHS STU3 Capability Statement Profile Design Document filename: NHS STU3 Capability Statement Profile Design.docx Project / Programme Programme 14 Interoperability & Architecture Project Document Reference Project Manager Richard

More information

Increasing access to OA material through metadata aggregation

Increasing access to OA material through metadata aggregation Increasing access to OA material through metadata aggregation Mark Jordan Simon Fraser University SLAIS Issues in Scholarly Communications and Publishing 2008-04-02 1 We will discuss! Overview of metadata

More information

2. Once logged in as a CFO Council member, under the Resources drop down, choose Thomson Reuters Checkpoint

2. Once logged in as a CFO Council member, under the Resources drop down, choose Thomson Reuters Checkpoint . You must login to the CUNA Councils website first to authenticate your CFO Council membership www.cunacouncils.org. Use the gray Sign In button in the right column on the home page.. Once logged in as

More information

Partner Web Services. GetOrderStatus Version 1 Service Manual

Partner Web Services. GetOrderStatus Version 1 Service Manual Partner Web Services GetOrderStatus Version 1 Service Manual Contents 1 Introduction... 4 1.1 Overview... 4 1.2 Supporting Resources... 4 2 Service Overview... 4 3 Service Endpoints... 5 4 Request/Response

More information

Britannica Library is an online general reference resource for all ages and abilities.

Britannica Library is an online general reference resource for all ages and abilities. Welcome to Britannica Library https://library.eb.com.au Britannica Library is an online general reference resource for all ages and abilities. Access a huge range of articles, multimedia, news feeds, biographies

More information

Working with Cisco MediaSense APIs

Working with Cisco MediaSense APIs MediaSense API Conventions, page 1 Job States, page 8 Precedence Rules for paramconnector and fieldconnector, page 9 Encoding, page 9 Special Characters in Text Strings, page 9 Request and Response Parameter

More information

Blueprint REST API Developer Guide

Blueprint REST API Developer Guide http://documentation.blueprintcloud.com Blueprint REST API Developer Guide 2017 Blueprint Software Systems Inc. All rights reserved 10/5/2017 Blueprint REST API Overview The Blueprint REST API allows you

More information

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018

Understanding RESTful APIs and documenting them with Swagger. Presented by: Tanya Perelmuter Date: 06/18/2018 Understanding RESTful APIs and documenting them with Swagger Presented by: Tanya Perelmuter Date: 06/18/2018 1 Part 1 Understanding RESTful APIs API types and definitions REST architecture and RESTful

More information

Reserva Room Signage: Installation Instructions and Administration Guide

Reserva Room Signage: Installation Instructions and Administration Guide Reserva : Installation Instructions and Administration Guide 14:00 Thu 15 Jun Dalzell Room Directors Meeting 13:30 15:00 13:21 Thu 15 Jun Dalzell Room Weekly Marketing Meeting 15:00-15:30 QA Session 15:45-16:30

More information

Shopitem API A technical guide to the REST API for managing updates of shopitems

Shopitem API A technical guide to the REST API for managing updates of shopitems Shopitem API A technical guide to the REST API for managing updates of shopitems Date: 07-12-2018 Version: 3.4 1 Index Introduction and background... 3 1. How to get access to the API and its online docs...

More information

Xtended Services Interface

Xtended Services Interface Xtended Services Interface Interface Specification Release 20.0 Document Version 1 9737 Washingtonian Boulevard, Suite 350 Gaithersburg, MD 20878 Tel +1 301.977.9440 WWW.BROADSOFT.COM BroadWorks Guide

More information

Corporate Office VirtualSite Solutions LLC Westmoor Drive Westminster, CO USA

Corporate Office VirtualSite Solutions LLC Westmoor Drive Westminster, CO USA VLR_API_01_0516 May2016 Corporate Office VirtualSite Solutions LLC 10368 Westmoor Drive Westminster, CO 80021 USA Copyright and Trademarks 2016 VirtualSite Solutions LLC. All rights reserved. VirtualSite

More information

Jane s 2.0 Customer FAQ

Jane s 2.0 Customer FAQ Jane s 2.0 Customer FAQ Accessing the Site Why are there no longer individual product URLs? The existing site is a collection of individual publications that have evolved over the years, incorporating

More information

RESTful Web Services. 20-Jan Gordon Dickens Chariot Solutions

RESTful Web Services. 20-Jan Gordon Dickens Chariot Solutions RESTful Web Services 20-Jan-2011 Gordon Dickens Chariot Solutions gdickens@chariotsolutions.com Instructor/Mentor at chariotsolutions.com/education Who Am I? Active Tweeter for Open Source Tech Topics

More information

Performance Platform Documentation

Performance Platform Documentation Performance Platform Documentation Release 1.0 Performance Platform July 20, 2017 Contents 1 Adding data 3 2 Emptying a data set 5 3 Client implementations 7 4 Glossary 9 5 Get a Performance Platform

More information

Oracle APEX 18.1 New Features

Oracle APEX 18.1 New Features Oracle APEX 18.1 New Features May, 2018 Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

TRAINING GUIDE. Lucity Web Services APIs

TRAINING GUIDE. Lucity Web Services APIs TRAINING GUIDE Lucity Web Services APIs Lucity Web Services APIs Lucity offers several web service APIs. This guide covers the Lucity Citizen Portal API as well as the. Contents How it Works... 2 Basics...

More information

XML/JSON Feed Documentation

XML/JSON Feed Documentation Overview The AdXpansion XML feed has been designed as an advanced feature for web and mobile developers who wish to integrate AdXpansion advertisements into their applications. AdXpansion provides the

More information

Intelligence Community and Department of Defense Content Discovery & Retrieval Integrated Project Team (CDR IPT)

Intelligence Community and Department of Defense Content Discovery & Retrieval Integrated Project Team (CDR IPT) Intelligence Community and Department of Defense Content Discovery & Retrieval Integrated Project Team (CDR IPT) IC/DoD REST Interface Encoding Specification for CDR Search, v1.1 12 May 2011 REVISION/HISTORY

More information

Composer Help. Web Request Common Block

Composer Help. Web Request Common Block Composer Help Web Request Common Block 7/4/2018 Web Request Common Block Contents 1 Web Request Common Block 1.1 Name Property 1.2 Block Notes Property 1.3 Exceptions Property 1.4 Request Method Property

More information

McAfee Next Generation Firewall 5.8.0

McAfee Next Generation Firewall 5.8.0 Reference Guide Revision A McAfee Next Generation Firewall 5.8.0 SMC API This guide gives an overview of the Security Management Center (SMC) application programming interface (API). It describes how to

More information

DIGITAL SERVICES. API Documentation Product Pricing

DIGITAL SERVICES. API Documentation Product Pricing DIGITAL SERVICES API Documentation Product Pricing Document Version Reason for change Author Signed-off by Status 0.10 Creation Gary Inkpen Final Draft 2016 Avios Group (AGL) Limited. All rights reserved.

More information

RESTful User Provisioning with IBM Business Process Manager on Cloud

RESTful User Provisioning with IBM Business Process Manager on Cloud RESTful User Provisioning with IBM Business Process Manager on Cloud The APIs described in this document are currently being used by the BPM on Cloud team. RESTful User Provisioning with IBM Business Process

More information

MarkLogic Server. REST Application Developer s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. REST Application Developer s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. REST Application Developer s Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-2, July, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents REST Application

More information

Oracle Service Cloud Integration for Developers Ed 1

Oracle Service Cloud Integration for Developers Ed 1 Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Service Cloud Integration for Developers Ed 1 Duration: 5 Days What you will learn The class covers how to extend the

More information

Cisco Prime Performance Manager 1.3 REST API Guide

Cisco Prime Performance Manager 1.3 REST API Guide Cisco Prime Performance Manager 1.3 REST API Guide September 17, 2012 Copyright 2012 Cisco Systems - 1 - Table of Contents 1 Purpose... 3 2 Assumptions... 4 2.1 Audience... 4 2.2 HTTP Version... 4 2.3

More information

StorageGRID Webscale 11.0 Tenant Administrator Guide

StorageGRID Webscale 11.0 Tenant Administrator Guide StorageGRID Webscale 11.0 Tenant Administrator Guide January 2018 215-12403_B0 doccomments@netapp.com Table of Contents 3 Contents Administering a StorageGRID Webscale tenant account... 5 Understanding

More information

Technical Specifications Version 1.0

Technical Specifications Version 1.0 Technical Specifications Version 1.0 1 Introduction... 1 Purpose and intended audience of this document... 1 Scope... 1 2 Definitions... 1 3 System overview... 3 The ATHEX AMP... 3 ATHEX Members Portal

More information

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August

SAP Jam Communities What's New 1808 THE BEST RUN. PUBLIC Document Version: August PUBLIC Document Version: August 2018 2018-10-26 2018 SAP SE or an SAP affiliate company. All rights reserved. THE BEST RUN Content 1 Release Highlights....3 1.1 Anonymous access to public communities....4

More information

Desktop Configuration Guide for NHSmail

Desktop Configuration Guide for NHSmail Desktop Configuration Guide for NHSmail Version 4 Published October 2017 Copyright 2017Health and Social Care Information Centre. The Health and Social Care Information Centre is a non-departmental body

More information

Go to to discover this essential resource today

Go to   to discover this essential resource today Cochrane User guide What is in The Cochrane Library? The Cochrane Library consists of seven databases and is used by a broad range of people interested in Evidence-Based health care, including consumers,

More information

Barracuda NextGen Report Creator

Barracuda NextGen Report Creator The creates customized reports using statistics and logs collected on Barracuda NextGen F-Series Firewalls. Each report can be configured to use multiple appliances, custom or predefined report data templates,

More information

Account Activity Migration guide & set up

Account Activity Migration guide & set up Account Activity Migration guide & set up Agenda 1 2 3 4 5 What is the Account Activity (AAAPI)? User Streams & Site Streams overview What s different & what s changing? How to migrate to AAAPI? Questions?

More information

API Design Methodology. Mike Amundsen API Academy /

API Design Methodology. Mike Amundsen API Academy / API Design Methodology Mike Amundsen API Academy / CA @mamund Introduction Learning Hypermedia Clients Focus on the client side code Covers human-driven & M2M Lots of code! Due in fall 2015 @LCHBook

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

We currently are able to offer three different action types:

We currently are able to offer three different action types: SMS Inbound Introduction SMS Inbound provides a simple to use interface for receiving inbound MMS messages. Inbound Message Actions Inbound Message Actions in SMS Inbound are things that our system can

More information

All requests must be authenticated using the login and password you use to access your account.

All requests must be authenticated using the login and password you use to access your account. The REST API expects all text to be encoded as UTF-8, it is best to test by sending a message with a pound sign ( ) to confirm it is working as expected. If you are having issues sending as plain text,

More information

CWIC Data Partner s Guide (OpenSearch) Approval Date:

CWIC Data Partner s Guide (OpenSearch) Approval Date: CEOS CWIC Project CWIC Data Partner s Guide (OpenSearch) Approval Date: 2017-05-09 Publication Date: 2017-05-10 Reference number of this Document: CWIC-DOC-14-001r010 Document version: V1.0 Category: CWIC

More information

Installation Guide. Kudos Boards v3.x. January ISW Development Pty Ltd

Installation Guide. Kudos Boards v3.x. January ISW Development Pty Ltd Installation Guide Kudos Boards v3.x January 2018 2018 ISW Development Pty Ltd Table of Contents Installation Overview... 3 Step 1: Setup the Java Message Service for Kudos Boards... 4 Task 1.1 - Login

More information

NDEV Mobile HTTP Services for NDEV Mobile Clients

NDEV Mobile HTTP Services for NDEV Mobile Clients NDEV Mobile HTTP Services for NDEV Mobile Clients Notice NDEV Mobile HTTP Services for NDEV Mobile Clients Copyright 2011-2012 Nuance Communications, Inc. All rights reserved. Published by Nuance Communications,

More information

H. W. Wilson OmniFile Full Text Mega Edition Database

H. W. Wilson OmniFile Full Text Mega Edition Database H. W. Wilson OmniFile Full Text Mega Edition Database (http://vnweb.hwwilsonweb.com/hww/jumpstart.jhtml)* Wilson OmniFile Full Text, Mega Edition provides electronic access to full-text articles, page

More information

Partner Web Services. Get License Service Manual

Partner Web Services. Get License Service Manual Partner Web Services Get License Service Manual Contents 1 Revision History... 4 2 Introduction... 5 2.1 Overview... 5 2.2 Supporting Resources... 5 3 Service Overview... 5 4 Service Endpoints... 7 5 Request/Response

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Oracle Service Cloud Integration for Developers Ed 1

Oracle Service Cloud Integration for Developers Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Service Cloud Integration for Developers Ed 1 Duration: 5 Days What you will learn The class covers how to extend the Service

More information

Discover GALILEO. Institutional Branding

Discover GALILEO. Institutional Branding Discover GALILEO Institutional Branding GALILEO Steering Committee Branding Policy Discover GALILEO must display the GALILEO logo or text brand, both in the EBSCO interface and on the institutional and

More information

STATS API: AN INTRODUCTION

STATS API: AN INTRODUCTION 1 STATS API: AN INTRODUCTION 2 STATS API: AN INTRODUCTION Presented by Andrew Flintosh, Senior Developer 7 years at STATS LLC Florida State University alumn 3 STATS MAIN DELIVERY METHODS FTP Push Requires

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

How to report the search process in EPOC protocols, reviews and review updates

How to report the search process in EPOC protocols, reviews and review updates How to report the search process in EPOC protocols, reviews and review updates Contents: EPOC search methods template text PRISMA examples Appendix examples Examples of how to cite selected databases and

More information

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

More information

vrealize Operations Manager API Programming Guide vrealize Operations Manager 6.6

vrealize Operations Manager API Programming Guide vrealize Operations Manager 6.6 vrealize Operations Manager API Programming Guide vrealize Operations Manager 6.6 vrealize Operations Manager API Programming Guide You can find the most up-to-date technical documentation on the VMware

More information

Getting Started with Yammer Nicolas Kanaris July 2016 Cyprus Pedagogical Institute #ATS2020

Getting Started with Yammer Nicolas Kanaris July 2016 Cyprus Pedagogical Institute #ATS2020 Getting Started with Yammer Nicolas Kanaris July 2016 Cyprus Pedagogical Institute Contents 1. About Yammer network 2. Connect to Yammer Home and External networks 3. Yammer portal user interface 4. Configure

More information

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B Table of Contents Summary... 3 Recommendations... 3 API Endpoints... 3 Method: Query... 4 GET request syntax... 4 Parameter Listing... 4 Required Parameters...

More information

PHPKB API Reference Guide

PHPKB API Reference Guide PHPKB API Reference Guide KB Administrator Fri, Apr 9, 09 User Manual 96 0 This document provides details on how to use the API available in PHPKB knowledge base management software. It acts as a reference

More information

The Cochrane Library. Reference Guide. Trusted evidence. Informed decisions. Better health.

The Cochrane Library. Reference Guide. Trusted evidence. Informed decisions. Better health. The Cochrane Library Reference Guide Trusted evidence. Informed decisions. Better health. www.cochranelibrary.com Did you know? Did you know? Ten tips for getting the most out of the Cochrane Library 1.

More information

11/14/2018. Istanbul Governance, risk, and compliance (GRC)

11/14/2018. Istanbul Governance, risk, and compliance (GRC) 11/14/2018 Governance, risk, and compliance (GRC) Contents Contents... 4 Policy and Compliance Management...5 Activate Policy and Compliance Management... 6 Dependency modeling and mapping...13 Compliance...

More information

Sequel SMRT Link Web Services API v4.0.0 Guide. Pacific Biosciences

Sequel SMRT Link Web Services API v4.0.0 Guide. Pacific Biosciences Sequel SMRT Link Web Services API v4.0.0 Guide Pacific Biosciences CONTENTS Chapter 1- Introduction... 5 1.1 Authentication... 5 Chapter 2 - SMRT Link Service API... 6 2.1 Run Design Service... 6 2.1.1

More information

REST API OVERVIEW. Design and of Web APIs using the REST paradigm.

REST API OVERVIEW. Design and of Web APIs using the REST paradigm. REST API OVERVIEW Design and of Web APIs using the REST paradigm. Goal How to use REST architectures to integrate (call and/or offer) remote services How to design a consistent set of REST APIs How to

More information

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design

REST Web Services Objektumorientált szoftvertervezés Object-oriented software design REST Web Services Objektumorientált szoftvertervezés Object-oriented software design Dr. Balázs Simon BME, IIT Outline HTTP REST REST principles Criticism of REST CRUD operations with REST RPC operations

More information

Assessment, Discharge and Withdrawal Notices between Hospitals and Social Services

Assessment, Discharge and Withdrawal Notices between Hospitals and Social Services Additional Messaging Guidance Document filename: Directorate / Programme Social Care Programme Project Assessment, Discharge and Withdrawal Notices Document Reference Senior Responsible Owner Simon Eccles

More information

Oracle Service Cloud Integration for Develope

Oracle Service Cloud Integration for Develope Oracle Uni Contact Us: 08 Oracle Service Cloud Integration for Develope Durat5 Da What you will learn The class covers how to extend the Service Cloud objec applicable to all APIs before moving on to specific

More information

Making Information Findable

Making Information Findable Making Information Findable CS 510 Spring 2010 1 To Discuss Suppose you create something and wanted to make sure people find in on the Internet. Examples book review house listing scientific data set CS

More information

CUSTOMER PORTAL Splash Pages

CUSTOMER PORTAL Splash Pages CUSTOMER PORTAL Splash Pages SPLASHPAGES In the splash page area, you can either create a custom splash page or use our editing tool and create a custom splash page using your own code. These splash pages

More information

TRANSFER MANAGER 2017

TRANSFER MANAGER 2017 TRANSFER MANAGER 2017 LAST UPDATED: JULY 2017 System enhancements are located in Resolved system issues are located in WHAT S IMPROVED? BEFORE YOU BEGIN WEB SERVICE The Transfer Manager 2017 Web Service

More information

Tresorit Active Directory Connector V2.0. User s Guide

Tresorit Active Directory Connector V2.0. User s Guide Tresorit Active Directory Connector V2.0 User s Guide Copyright by Tresorit 2018 Contents About Tresorit Active Directory Connector... 4 Features... 4 Synchronization logic... 5 About managed users and

More information

ExtraHop 7.3 ExtraHop Trace REST API Guide

ExtraHop 7.3 ExtraHop Trace REST API Guide ExtraHop 7.3 ExtraHop Trace REST API Guide 2018 ExtraHop Networks, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machinereadable form without

More information

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION

PERFORMANCE HORIZON PUBLISHER API INTRODUCTION PERFORMANCE HORIZON PUBLISHER API INTRODUCTION Version 1.0 October 2016 WHY USE API S All of the features and functionality that we have developed aim to give you, the user, a greater understanding of

More information

Perceptive Interact for Salesforce Enterprise

Perceptive Interact for Salesforce Enterprise Perceptive Interact for Salesforce Enterprise Installation and Setup Guide Version: 3.x.x Written by: Product Knowledge, R&D Date: April 2018 Copyright 2015-2018 Hyland Software, Inc. and its affiliates.

More information

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide

BlackBerry AtHoc Networked Crisis Communication. BlackBerry AtHoc API Quick Start Guide BlackBerry AtHoc Networked Crisis Communication BlackBerry AtHoc API Quick Start Guide Release 7.6, September 2018 Copyright 2018 BlackBerry Limited. All Rights Reserved. This document may not be copied,

More information

Appointment API REST Specification

Appointment API REST Specification Frameworx Specification Appointment API REST Specification TMF646 Release 16.0.1 October 2016 Latest Update: Frameworx Release 16 Version 1.0.2 TM Forum Approved IPR Mode: RAND TM Forum 2016. All Rights

More information

Complimentary SEO Analysis & Proposal. ageinplaceofne.com. Rashima Marjara

Complimentary SEO Analysis & Proposal. ageinplaceofne.com. Rashima Marjara Complimentary SEO Analysis & Proposal ageinplaceofne.com Rashima Marjara Wednesday, March 8, 2017 CONTENTS Contents... 1 Account Information... 3 Introduction... 3 Website Performance Analysis... 4 organic

More information

vrealize Log Insight Developer Resources

vrealize Log Insight Developer Resources vrealize Log Insight Developer Resources vrealize Log Insight 4.3 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

API Developer s Guide

API Developer s Guide API Developer s Guide Created By : Marco Kok (marco@socialsurvey.com) Updated on : 04/10/2018 Version : 2.4.3 1 Introduction The SocialSurvey API provides access to import transaction data to our system

More information

INSTITUTIONAL REPOSITORY SERVICES

INSTITUTIONAL REPOSITORY SERVICES 1 INSTITUTIONAL REPOSITORY SERVICES Exploring how Elsevier can support institutions to promote and broadcast the work of their authors in their institutional repositories. April 2014 2 Sharing and using

More information

vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0

vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0 vrealize Log Insight Developer Resources Update 1 Modified on 03 SEP 2017 vrealize Log Insight 4.0 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Heartbeat API. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer.

Heartbeat API. Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October Nick Palmer. Heartbeat API Document revision 1.0 Date of Issue: 04 October 2018 Date of revision: 04 October 2018 Nick Palmer Product Manager Page 1 of 7 Table of Contents 1. Purpose... 3 2. Glossary of Terms... 3

More information

Moxie Notifications Documentation

Moxie Notifications Documentation Moxie Notifications Documentation Release 0.1 Mobile Oxford team, IT Services, University of Oxford April 23, 2014 Contents i ii CHAPTER 1 HTTP API 1.1 Endpoint 1.1.1 Format Dates are expressed as YYYY-mm-DDTHH:mm:ss

More information

What s New in PowerSchool 9.0

What s New in PowerSchool 9.0 What s New in PowerSchool 9.0 PowerSchool 9.0 contains many new features and enhancements to existing functionality. These features are designed to improve efficiency and overall SIS productivity. This

More information

KIWIRE 2.0 PMS API. Version (July 2017)

KIWIRE 2.0 PMS API. Version (July 2017) KIWIRE 2.0 PMS API Version 1.0.0 (July 2017) Proprietary Information Notice This document is proprietary to Synchroweb (M) Sdn. Bhd. By utilizing this document, the recipient agrees to avoid publication

More information

Abstract. Table of Contents. 1. License

Abstract. Table of Contents. 1. License Your use of this Specification may be subject to other third party rights. THIS SPECIFICATION IS PROVIDED AS IS. The contributors expressly disclaim any warranties (express, implied, or otherwise), including

More information

IBM Security Access Manager for Mobile Version Developer topics

IBM Security Access Manager for Mobile Version Developer topics IBM Security Access Manager for Mobile Version 8.0.0.5 Developer topics IBM Security Access Manager for Mobile Version 8.0.0.5 Developer topics ii IBM Security Access Manager for Mobile Version 8.0.0.5:

More information

Objects in the REST API

Objects in the REST API Request Structure, page 1 Response Structure, page 3 Rate Limiting, page 4 Rate Limiting, page 5 Payload Limiting, page 5 Audit Services, page 5 Deployment Services, page 5 Device Group Services, page

More information

Canonical Identity Provider Documentation

Canonical Identity Provider Documentation Canonical Identity Provider Documentation Release Canonical Ltd. December 14, 2018 Contents 1 API 3 1.1 General considerations.......................................... 3 1.2 Rate limiting...............................................

More information

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx

Trigger SMS API. API Documentation SPLIO - SPRING Contact and Campaign Trigger SMS API - EN v4.0.docx API Documentation 2017-09-08 Summary Introduction... 3 Access... 3 Base URL... 3 Europe hosting... 3 Asia hosting... 3 Authentication... 3 Request format... 4 Response format... 4 Error Codes & Responses...

More information