SlideShare a Scribd company logo
INTEGRATING WITH THE ORCID API
19 APRIL 2017
community@orcid.org | orcid.org/0000-0002-6036-0903
ALAINNA THERESE WRIGLEY
Senior ORCID Community Team Specialist (APAC)
THE ORCID API
API Features
Public API
Freely available to anyone with
ORCID iD
• One (1) set of public API credentials (integration)
• Authenticate: Get a user’s authenticated ORCID iD
• Read (Public): Search/retrieve public data
Member API
ORCID member organizations
(Sandbox test environment
freely available to anyone)
• One (1) set of API credentials (integration)
• Read (Limited): Search/retrieve limited-access data
• Add: Post new data to a record
• Update: Edit or delete data you previously added
Premium Member API
Premium ORCID member
organizations
• Five (5) sets of API credentials (integrations)
• Webhooks: Receive notifications of updates
• Customised monthly reports (including email stats)
• Access to monthly public data file
ORCID REGISTRY CONNECTIONS
Two models:
1. Connect via a vendor system
• Manuscript submission/publication
• Document/data repositories
• Profile systems
• CRIS systems
2. Develop a custom connection
VENDOR CONNECTIONS
Publishing
• eJournal Press
• Editorial Manager
• Open Journal Systems
• ScholarOne
Document / data
repositories
• ePrints
• Hydra/Fedora
CRIS Systems
• Converis
• DSpace-CRIS
• Elements
• IRMA
• Pivot
• PlumX
• Pure
• Vivo
Find more:
https://members.orcid.org/orcid-
enabled-systems
CUSTOM INTEGRATIONS
Via the ORCID API
• Fine-tuned control & permissions
• Customized buttons, user flows, feedback
• Test & troubleshoot with ORCID team
Case examples: https://members.orcid.org/resources
Code examples:
https://members.orcid.org/api/resources/code-examples
COLLECT & CONNECT
COLLECT
COLLECT researcher’s validated iDs using
OAuth &
ORCID API
Learn more:
• ORCID workflows: https://members.orcid.org/api/workflow
• ORCID integration points: https://members.orcid.org/api/integrate
Look for natural fits:
• Email to researcher
• Registration/sign in
• Account settings/profile
• Submission
Email invitation
ORCID as a
sign in option
INVOLVING THE USER
Key benefits:
• You know the user controls the iD
• User knows what’s going on/user choice
• Privacy/ data control trends
• Position/ strengthen your system as a
service
How?
• Just a customized URL
• Prior iD not needed
STEP 1: AUTHORIZATION URL
https://sandbox.orcid.org/oauth/authorize? 
client_id=APP-E422WM33OPZWKKMQ& 
response_type=code& 
scope=/read-limited%20/activities/update& 
redirect_uri=https://my.URL.org& 
family_names=Researcher&given_names=Bob&
email=bobresearcher@mailinator.com&
state=UNI-ID
the base URL, displays ORCID sign in screen
who’s asking?
what permissions?
where the user goes next
personalize the
experience with data
from your system
The OAuth call: part I
extra info to identify
user to your system
WHAT THE USER SEES
already signed in
sign in form
(already registered)
registration form
STEP 2: AUTH CODE & USER
FEEDBACK
ORCID sends the user to your redirect, with an
auth code appended to the end
https://my.URL.org?htA3yE&state=UNI-ID
• Save the code – you need it for the next step
• Display useful messages to the user
deny message
authorize message
STEP 3A: TRANSFORM THE
CODE INTO A TOKEN
Use the code to gain access using the ORCID API
https://sandbox.orcid.org/oauth/token
HEADER: accept:application/json
DATA:
client_id=APP-XT8FBKJRO3MR8WDR
client_secret=e285575c-4794-464b-a807-6f1c06b63
grant_type=authorization_code
code=htA3yE
redirect_uri=https%3A%2F%2Fmy.URL.org
our API calls always look
like URLs (RESTful)
what format?
the auth code
confirms that you are
the right one to get this
information
STEP 3B: STORE THE RESULT
The result of the call
"access_token" :"6710dfee-6aab-445b-a266-205dd9085273",
"token_type" :"bearer",
“refresh_token“ :"2d76d8d0-6fd6-426b-a017-61e0ceda0ad2",
"expires_in" :631138518,
"scope" :"/read-limited /activities/update",
"orcid" :"0000-0002-0491-7882",
"name" :"Bob Researcher"
store the access token,
refresh token and iD with
user’s info in your system
when permission expires (in seconds)
your permission – executed contract
iD & name for the person
who gave permission
what you can do
✔ iD Collected!
DISPLAY
DISPLAY iDs on your website & systems
Learn more:
• iD display guidelines: https://orcid.org/trademark-and-id-display-guidelines
iDs in profiles:
Tokyo Institute of Technology
iDs in journals: eLife
DISPLAY: IDS IN METADATA
<person_name>
<given_name>Tomoko</given_name>
<surname>Kato</surname>
<ORCID authenticated=“true”>
http://orcid.org/0000-0002-1469-0685
</ORCID>
</person_name>
DOI metadata
iDs in search
CONNECT
CONNECT your data to ORCID records
• Request permission to write to records
• Store long-lived tokens & put codes
• Add data that you uniquely can assert
• Explain the connection to your users
Enable researchers to provide validated data to other systems they use
Learn more:
• ORCID workflows: https://members.orcid.org/api/workflow
• Auto-update: https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
CONNECT VIA API TO SEND
DATA
Verb: POST
BASE URL: https://api.sandbox.orcid.org/v2.0/0000-0002-0491-7882/employment
HEADERS: Content-type:application/vnd.orcid+xml
Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273
DATA (if adding or updating):
the file location=@employment.xml
endpoint:
/education
/work
/funding
/peer-review
etc.
data format
access token from before
type of action, also: GET; PUT; DELETE
1. Your client sends data 2. Researcher’s record updated
researcher’s iD
your client’s name
Saved time, better reporting, improved information flow
SYNCHRONIZE with your systems
• Continuously update researchers’ records with
new or corrected activity
• Know when record is updated – register
ORCID update notifications (webhooks)
• Search & Link wizard
SYNCHRONIZE
Learn more:
• Webhooks: https://members.orcid.org/api/tutorial/webhooks
• Auto-update: https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
API DEMO: CREATE ON DEMAND
https://orcid-createondemand.herokuapp.com
RESOURCES
Membership / API comparison chart
https://orcid.org/about/membership/comparison
Member Support Centre
https://members.orcid.org
ORCID API documentation
https://members.orcid.org/api
ORCID API documentation
https://members.orcid.org/api/workflow
ORCID API users listserv
https://groups.google.com/group/orcid-api-users
ORCID message (XSD) (Github)
https://git.io/vXw5w
Questions?
support@orcid.org

More Related Content

PDF
What is the ORCID API and what you can do with it? (R. Peters)
PPTX
Practical Guide for ORCID Users
PPTX
ORCID in platform research lifecycle products (M. Buys)
PPTX
ORCID Implementation in Open Access Repositories and Institutional Research I...
PDF
ORCID: Streamlining workflows - Crossref LIVE South Africa
PDF
ORCID identifiers in research workflows - ACM (B. Rous)
PPTX
Overview of orcid in research lifecycle (M. Buys)
PDF
ORCID in platform research lifecycle products -Elsevier (C. Shillum)
What is the ORCID API and what you can do with it? (R. Peters)
Practical Guide for ORCID Users
ORCID in platform research lifecycle products (M. Buys)
ORCID Implementation in Open Access Repositories and Institutional Research I...
ORCID: Streamlining workflows - Crossref LIVE South Africa
ORCID identifiers in research workflows - ACM (B. Rous)
Overview of orcid in research lifecycle (M. Buys)
ORCID in platform research lifecycle products -Elsevier (C. Shillum)

What's hot (20)

PDF
ORCID in platform research lifecycle products - Thomson Reuters (P. Brennan)
PDF
ORCID API (M. Buys)
PDF
ORCID in platform research lifecycle products - Digital Science (A. Higgs)
PPTX
Identity Manager Opensource OpenIDM Architecture
PDF
ORCID identifiers in research workflows - PLOS (V. Kiermer)
PPTX
Presentation- on OIM
PDF
Security for Enterprise Search : SearchBlox
PPTX
MS365 Dev Bootcamp Montreal 2019 - Microsoft graph introduction
PDF
Beyond what is ORCID... using the API (L. Paglione)
PDF
5. integration orcid outreach_20121016
PDF
End-to-End Identity Management
PPT
Odoo access rights
PPTX
Top Tech Tips 2: ORCID
PDF
How to use orcid to build your work and reseach profile
PDF
Npg orcid launch october 2012
PPTX
A whistlestop tour of FHIR API authentication and authorization
PPTX
2. Day 2 - Identify and SSO
PPT
Auditing web servers for HIPAA compliance - §164.312(a)(1)
PDF
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
PPT
Openid & Oauth: An Introduction
ORCID in platform research lifecycle products - Thomson Reuters (P. Brennan)
ORCID API (M. Buys)
ORCID in platform research lifecycle products - Digital Science (A. Higgs)
Identity Manager Opensource OpenIDM Architecture
ORCID identifiers in research workflows - PLOS (V. Kiermer)
Presentation- on OIM
Security for Enterprise Search : SearchBlox
MS365 Dev Bootcamp Montreal 2019 - Microsoft graph introduction
Beyond what is ORCID... using the API (L. Paglione)
5. integration orcid outreach_20121016
End-to-End Identity Management
Odoo access rights
Top Tech Tips 2: ORCID
How to use orcid to build your work and reseach profile
Npg orcid launch october 2012
A whistlestop tour of FHIR API authentication and authorization
2. Day 2 - Identify and SSO
Auditing web servers for HIPAA compliance - §164.312(a)(1)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
Openid & Oauth: An Introduction
Ad

Similar to Integrating with the ORCID API (20)

PPTX
ORCID API
PPTX
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
PPTX
Getting Connected with the ORCID API (A. Wrigley)
PPTX
ORCID API in action (A. Wrigley)
PDF
ORCID API Workshop OR2015
PPTX
ORCID API in Action (A. Wrigley)
PDF
Sharing information between systems: The ORCID API (Alainna Wrigley)
PPTX
ORCID API introduction
PDF
ORCID Member Site Integration: Using the API
PDF
CrossRef Annual Meeting 2012 ORCID Laure Haak
PPTX
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
PPTX
Orcid: why identifiers matter
PDF
ORCID Membership Levels
PPTX
ORCID auto-update in the publishing process: From submission to your systems ...
PDF
Apresentação ORCiD USP 2017
PDF
Shared IT Solutions: The Secret Sauce for Research Collaboration
PPTX
ORCID Technical Intro - English
PDF
VIVO and persistent identifiers: Integrating ORCID_08152013
PPTX
Understanding SharePoint Apps, authentication and authorization infrastructur...
PDF
Envision it SharePoint Extranet Webinar Series - Federation and SharePoint On...
ORCID API
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
Getting Connected with the ORCID API (A. Wrigley)
ORCID API in action (A. Wrigley)
ORCID API Workshop OR2015
ORCID API in Action (A. Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)
ORCID API introduction
ORCID Member Site Integration: Using the API
CrossRef Annual Meeting 2012 ORCID Laure Haak
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
Orcid: why identifiers matter
ORCID Membership Levels
ORCID auto-update in the publishing process: From submission to your systems ...
Apresentação ORCiD USP 2017
Shared IT Solutions: The Secret Sauce for Research Collaboration
ORCID Technical Intro - English
VIVO and persistent identifiers: Integrating ORCID_08152013
Understanding SharePoint Apps, authentication and authorization infrastructur...
Envision it SharePoint Extranet Webinar Series - Federation and SharePoint On...
Ad

More from Nobuko Miyairi (20)

PPTX
ORCID概要
PPTX
国際研究者識別子ORCID: 学術出版における新たな可能性
PPTX
国際研究者識別子ORCID
PPTX
20170526 orcid概要
PPTX
ORCID Japan Consortium discussion for academic societies
PPTX
ORCID around the world
PPTX
ORCID Japan Member Meeting
PPTX
20170303 CLSTL ORCID
PPTX
国際研究者識別子ORCID:いま研究者が知らなければいけないこと
PPTX
国際研究者識別子ORCID :いま図書館員が知らなければいけないこと
PPTX
研究者識別子ORCID:
PPTX
ORCID: connecting research and researchers
PPTX
ORCID: connecting research & researchers
PPTX
ORCID - connecting research & researchers
PPTX
ORCID (ScholarOne Manuscripts ユーザーカンファレンス2015、東京)
PPTX
ORCID introduction
PPTX
ORCID status & updates
PPTX
ORCID adoption in research workflow
PPTX
ORCID introduction @ RA協議会第1回年次大会 20150902
PPTX
20131029 nobuko lib_fair
ORCID概要
国際研究者識別子ORCID: 学術出版における新たな可能性
国際研究者識別子ORCID
20170526 orcid概要
ORCID Japan Consortium discussion for academic societies
ORCID around the world
ORCID Japan Member Meeting
20170303 CLSTL ORCID
国際研究者識別子ORCID:いま研究者が知らなければいけないこと
国際研究者識別子ORCID :いま図書館員が知らなければいけないこと
研究者識別子ORCID:
ORCID: connecting research and researchers
ORCID: connecting research & researchers
ORCID - connecting research & researchers
ORCID (ScholarOne Manuscripts ユーザーカンファレンス2015、東京)
ORCID introduction
ORCID status & updates
ORCID adoption in research workflow
ORCID introduction @ RA協議会第1回年次大会 20150902
20131029 nobuko lib_fair

Recently uploaded (20)

PDF
oil_refinery_presentation_v1 sllfmfls.pdf
DOC
LSTM毕业证学历认证,利物浦大学毕业证学历认证怎么认证
PPTX
Intro to ISO 9001 2015.pptx wareness raising
PDF
COLEAD A2F approach and Theory of Change
PPTX
Relationship Management Presentation In Banking.pptx
PPTX
Presentation for DGJV QMS (PQP)_12.03.2025.pptx
PPTX
Self management and self evaluation presentation
PPT
First Aid Training Presentation Slides.ppt
PPTX
fundraisepro pitch deck elegant and modern
PPTX
chapter8-180915055454bycuufucdghrwtrt.pptx
PPTX
Impressionism_PostImpressionism_Presentation.pptx
DOCX
ENGLISH PROJECT FOR BINOD BIHARI MAHTO KOYLANCHAL UNIVERSITY
PPTX
Hydrogel Based delivery Cancer Treatment
PPTX
Research Process - Research Methods course
PPTX
BIOLOGY TISSUE PPT CLASS 9 PROJECT PUBLIC
PPTX
water for all cao bang - a charity project
PPT
The Effect of Human Resource Management Practice on Organizational Performanc...
PPTX
MERISTEMATIC TISSUES (MERISTEMS) PPT PUBLIC
PPTX
PHIL.-ASTRONOMY-AND-NAVIGATION of ..pptx
PDF
Microsoft-365-Administrator-s-Guide_.pdf
oil_refinery_presentation_v1 sllfmfls.pdf
LSTM毕业证学历认证,利物浦大学毕业证学历认证怎么认证
Intro to ISO 9001 2015.pptx wareness raising
COLEAD A2F approach and Theory of Change
Relationship Management Presentation In Banking.pptx
Presentation for DGJV QMS (PQP)_12.03.2025.pptx
Self management and self evaluation presentation
First Aid Training Presentation Slides.ppt
fundraisepro pitch deck elegant and modern
chapter8-180915055454bycuufucdghrwtrt.pptx
Impressionism_PostImpressionism_Presentation.pptx
ENGLISH PROJECT FOR BINOD BIHARI MAHTO KOYLANCHAL UNIVERSITY
Hydrogel Based delivery Cancer Treatment
Research Process - Research Methods course
BIOLOGY TISSUE PPT CLASS 9 PROJECT PUBLIC
water for all cao bang - a charity project
The Effect of Human Resource Management Practice on Organizational Performanc...
MERISTEMATIC TISSUES (MERISTEMS) PPT PUBLIC
PHIL.-ASTRONOMY-AND-NAVIGATION of ..pptx
Microsoft-365-Administrator-s-Guide_.pdf

Integrating with the ORCID API

  • 1. INTEGRATING WITH THE ORCID API 19 APRIL 2017 community@orcid.org | orcid.org/0000-0002-6036-0903 ALAINNA THERESE WRIGLEY Senior ORCID Community Team Specialist (APAC)
  • 2. THE ORCID API API Features Public API Freely available to anyone with ORCID iD • One (1) set of public API credentials (integration) • Authenticate: Get a user’s authenticated ORCID iD • Read (Public): Search/retrieve public data Member API ORCID member organizations (Sandbox test environment freely available to anyone) • One (1) set of API credentials (integration) • Read (Limited): Search/retrieve limited-access data • Add: Post new data to a record • Update: Edit or delete data you previously added Premium Member API Premium ORCID member organizations • Five (5) sets of API credentials (integrations) • Webhooks: Receive notifications of updates • Customised monthly reports (including email stats) • Access to monthly public data file
  • 3. ORCID REGISTRY CONNECTIONS Two models: 1. Connect via a vendor system • Manuscript submission/publication • Document/data repositories • Profile systems • CRIS systems 2. Develop a custom connection
  • 4. VENDOR CONNECTIONS Publishing • eJournal Press • Editorial Manager • Open Journal Systems • ScholarOne Document / data repositories • ePrints • Hydra/Fedora CRIS Systems • Converis • DSpace-CRIS • Elements • IRMA • Pivot • PlumX • Pure • Vivo Find more: https://members.orcid.org/orcid- enabled-systems
  • 5. CUSTOM INTEGRATIONS Via the ORCID API • Fine-tuned control & permissions • Customized buttons, user flows, feedback • Test & troubleshoot with ORCID team Case examples: https://members.orcid.org/resources Code examples: https://members.orcid.org/api/resources/code-examples
  • 7. COLLECT COLLECT researcher’s validated iDs using OAuth & ORCID API Learn more: • ORCID workflows: https://members.orcid.org/api/workflow • ORCID integration points: https://members.orcid.org/api/integrate Look for natural fits: • Email to researcher • Registration/sign in • Account settings/profile • Submission Email invitation ORCID as a sign in option
  • 8. INVOLVING THE USER Key benefits: • You know the user controls the iD • User knows what’s going on/user choice • Privacy/ data control trends • Position/ strengthen your system as a service How? • Just a customized URL • Prior iD not needed
  • 9. STEP 1: AUTHORIZATION URL https://sandbox.orcid.org/oauth/authorize? client_id=APP-E422WM33OPZWKKMQ& response_type=code& scope=/read-limited%20/activities/update& redirect_uri=https://my.URL.org& family_names=Researcher&given_names=Bob& email=bobresearcher@mailinator.com& state=UNI-ID the base URL, displays ORCID sign in screen who’s asking? what permissions? where the user goes next personalize the experience with data from your system The OAuth call: part I extra info to identify user to your system
  • 10. WHAT THE USER SEES already signed in sign in form (already registered) registration form
  • 11. STEP 2: AUTH CODE & USER FEEDBACK ORCID sends the user to your redirect, with an auth code appended to the end https://my.URL.org?htA3yE&state=UNI-ID • Save the code – you need it for the next step • Display useful messages to the user deny message authorize message
  • 12. STEP 3A: TRANSFORM THE CODE INTO A TOKEN Use the code to gain access using the ORCID API https://sandbox.orcid.org/oauth/token HEADER: accept:application/json DATA: client_id=APP-XT8FBKJRO3MR8WDR client_secret=e285575c-4794-464b-a807-6f1c06b63 grant_type=authorization_code code=htA3yE redirect_uri=https%3A%2F%2Fmy.URL.org our API calls always look like URLs (RESTful) what format? the auth code confirms that you are the right one to get this information
  • 13. STEP 3B: STORE THE RESULT The result of the call "access_token" :"6710dfee-6aab-445b-a266-205dd9085273", "token_type" :"bearer", “refresh_token“ :"2d76d8d0-6fd6-426b-a017-61e0ceda0ad2", "expires_in" :631138518, "scope" :"/read-limited /activities/update", "orcid" :"0000-0002-0491-7882", "name" :"Bob Researcher" store the access token, refresh token and iD with user’s info in your system when permission expires (in seconds) your permission – executed contract iD & name for the person who gave permission what you can do ✔ iD Collected!
  • 14. DISPLAY DISPLAY iDs on your website & systems Learn more: • iD display guidelines: https://orcid.org/trademark-and-id-display-guidelines iDs in profiles: Tokyo Institute of Technology iDs in journals: eLife
  • 15. DISPLAY: IDS IN METADATA <person_name> <given_name>Tomoko</given_name> <surname>Kato</surname> <ORCID authenticated=“true”> http://orcid.org/0000-0002-1469-0685 </ORCID> </person_name> DOI metadata iDs in search
  • 16. CONNECT CONNECT your data to ORCID records • Request permission to write to records • Store long-lived tokens & put codes • Add data that you uniquely can assert • Explain the connection to your users Enable researchers to provide validated data to other systems they use Learn more: • ORCID workflows: https://members.orcid.org/api/workflow • Auto-update: https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
  • 17. CONNECT VIA API TO SEND DATA Verb: POST BASE URL: https://api.sandbox.orcid.org/v2.0/0000-0002-0491-7882/employment HEADERS: Content-type:application/vnd.orcid+xml Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273 DATA (if adding or updating): the file location=@employment.xml endpoint: /education /work /funding /peer-review etc. data format access token from before type of action, also: GET; PUT; DELETE 1. Your client sends data 2. Researcher’s record updated researcher’s iD your client’s name
  • 18. Saved time, better reporting, improved information flow SYNCHRONIZE with your systems • Continuously update researchers’ records with new or corrected activity • Know when record is updated – register ORCID update notifications (webhooks) • Search & Link wizard SYNCHRONIZE Learn more: • Webhooks: https://members.orcid.org/api/tutorial/webhooks • Auto-update: https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
  • 19. API DEMO: CREATE ON DEMAND https://orcid-createondemand.herokuapp.com
  • 20. RESOURCES Membership / API comparison chart https://orcid.org/about/membership/comparison Member Support Centre https://members.orcid.org ORCID API documentation https://members.orcid.org/api ORCID API documentation https://members.orcid.org/api/workflow ORCID API users listserv https://groups.google.com/group/orcid-api-users ORCID message (XSD) (Github) https://git.io/vXw5w Questions? support@orcid.org

Editor's Notes

  • #8: Ensure individuals are correctly connected with your institution Explain what ORCID is Explain why you’re collecting iDs Consistent user experience Authenticated connections
  • #15: Signal to your researchers and the wider community that your systems support ORCID iDs