SlideShare a Scribd company logo
1 of 32
orcid.orgContact Info: p. +1-301-922-9062 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817 USA
Getting connected
with the ORCID API
Alainna Therese Wrigley
ORCID Community Engagement & Support
support@orcid.org | orcid.org/0000-0002-6036-0903
ORCID provides
2orcid.org
Persistent digital identifiers to distinguish
researchers from each other
Member-built integrations that connect
researchers and their activities/affiliations
A hub for synchronizing machine-readable
connections between identifiers for people,
organizations, and research activities
✔ Plumbing for research information
✔ Tools to build trust in digital information
3
Organizations are
use ORCID APIs to
authenticate,
collect, display,
and connect
persistent
identifiers for
people, places,
and things in
research workflows
ORCID enables assertions
orcid.org 4
The other things that need to happen
• Communications
• Roll-out timing
• Encouraging use
…are as important and can be much harder
than using the API
Let’s not get ahead of
ourselves...
orcid.org 5
API (Application Programming
Interface): an interface that lets one
software program “talk” with another,
exchanging data behind the scenes.
What is an API?
orcid.org 6
• Permissions/scopes: your contract with the
user
• ORCID message (schema): format of the data
exchanged
• OAuth calls – the permission protocol: how you
“execute the contract”
• ORCID-specific calls: providing & receiving
information with the registry
The ORCID API in a
nutshell
PHOTO: 3/2 nuts © M.G. Kafkas
https://flic.kr/p/4XytpS
orcid.org 7
ORCID Public and Member
APIs
API Features
Public API
Freely available to
anyone
• Authenticate: Get a user’s authenticated ORCID
iD
• Read (Public): Search/retrieve public data
• Create: Facilitate creation of new ORCID records
(via on-demand process)
Member API
ORCID member
organizations
(Sandbox test
environment freely
available to anyone)
• Read (Limited): Search/retrieve "limited-access"
data
• Add: Post new items to a record
• Update: Edit or delete items you previously
added
• Webhooks (Premium only): Receive notifications
of updates
orcid.org 8
Connecting to the ORCID
Registry
Two models:
1. Connect via a vendor system
• Manuscript submission/publication
• Document/data repositories
• Profile systems
• CRIS systems
2. Develop a custom connection
orcid.org 9
Custom
integration
Via the ORCID APIs
• Fine-tuned control and permissions
• Customized buttons, user flows, & user
feedback
Current integration list:
http://members.orcid.org/current-integrations
orcid.org 10
Vendor system
integration
Publishing
• eJournal Press
• Editorial Manager
• ScholarOne
Document / data
repositories
• DSpace
• ePrints
• Hydra/Fedora
CRIS Systems
• Converis
• Elements
• IRMA
• Pivot
• PlumX
• Pure
• Vivo
http://members.orcid.org/orcid-enabled-systems
29 June 2016 orcid.org 11
Collect & Connect goals
• Clarify how plumbing works
• Standardize experience
• Standard connection installation
guidelines
• Increase predictability and trust in the
“utility”
• Community approach to reliable
connections
29 June 2016 orcid.org 12
Collect & Connect
29 June 2016 orcid.org 13
Collect
Display Connect
SynchAuthenticate!
Collect
COLLECT validated ORCID iDs for
individuals
• Explain what ORCID is
• Explain why you’re collecting iDs
• Consistent user experience
• Authenticated connections
29 June 2016 orcid.org 14
Ensure individuals are correctly connected with your institution
Converis, Pure, Symplectic Elements, VIVO use the OAuth process
Display
29 June 2016 orcid.org 15
DISPLAY iDs on your website, platform,
systems
• iDs shown as a link
• iDs in metadata
• Use the ORCID Member logo
• Explain why iDs are collected
Signal that your systems are plumbed to support ORCID iDs
http://orcid.org/trademark-and-id-display-guidelines
Connect
29 June 2016 orcid.org 16
CONNECT your data to ORCID Records
• Request permission to write to Records
• Store long-lived tokens
• Add data that you uniquely can (authoritative)
• Explain the connection
Enable researchers to provide validated data to others
https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
Synchronize
29 June 2016 orcid.org 17
SYNCHRONIZE with your systems
• Update information when it changes
• Auto-add new information
• Search & link wizards
• Sync data from others
Saved time, better reporting, improved information flow
https://members.orcid.org/api/tutorial-webhooks
https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
29 June 2016 18
DISPLAY
• In metadata
• On sites
• In publications
CONNECT
• Affiliations (employers)
• Works (publishers)
• Awards (funders)
orcid.org
Collect & Connect flow
Get permission, use
permission
ORCID Record
Yes!
Do you have
permission to do what
you want to do?
Get the permission;
store iD and “token”
Read the record or
update the record
No
OAuth
29 June 2016 19orcid.org
PHOTO: Job Meeting
www.flickr.com/photos/jobmeeting/14375164286
Involving the
user
orcid.org
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 “fancy” URL
• Prior iD not needed
• Hard things: promotion, finding touch points
Get permission: touch
points
Look for natural fits:
• Your sign in – why not link your
iD?
• Your account settings/ user
profile
• Submission (of any type)
• Form fills: pre-fill from your
Record!
• Registration: for conference or
meeting
• Reporting: Link your iD to get
started
Step 1: fancy
URL
https://sandbox.orcid.org/oauth/authorize? 
client_id=APP-XT8FBKJRO3MR8WDR& 
response_type=code& 
scope=/orcid-profile/read-limited%20
/activities/update& 
redirect_uri=https://my.URL.org& 
family_names=Researcher&given_names=Bob&
email=bobresearcher@mailinator.com&
orcid=0000-0001-6356-0580
The base URL – displays the screen
who’s asking?
what permission?
where the user goes next
Personalize the
experience
The OAuth call: part I
Step 2: User feedback & Auth
code
The magic code
ORCID sends the user to your redirect, with a code
https://my.URL.org?htA3yE
you...
• Save the code – you need it for the next
step
• Display something useful to the user
• Authorize: thanks for your permission!
• Deny: are you sure you don’t want to give
permission?
Step 3a: Change code into
token
Use the code to gain access using the ORCID
API
https://api.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 looks like
URLs (RESTful)
what format?
The magic code
confirming 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",
"expires_in” : 631138518,
"scope” : "/orcid-profile/read-limited /activities/update",
"orcid” : "0000-0001-6356-0580",
"name” : "Bob Researcher"
store the access token and iD
when permission expires (in seconds)
your permission – executed contract
iD & name for the person
who gave permission
What you can do
✔ iD Collected!
You have the iD, now display
it!
iDs in
profiles
Get permission, use
permission
ORCID Record
Yes!
Do you have
permission to do what
you want to do?
Get the permission;
store iD and “token”
Read the record or
update the record
No
OAuth
29 June 2016 27orcid.org
Connect to send
data
• Read data: GET
• Add data: POST
• Update data: PUT
BASE URL: https://sandbox.api.orcid.org/v1.2/0000-0001-6356-0580/affiliations
HEADERS:
accept:application/json (reading) content-type:application/json
Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273
DATA (if adding or updating):
the file location=@file_location_name
Relevant area:
/orcid-bio,
/funding
data format
Access token from before
Send data in ORCID
Schema
User sees new info on
record
API in action: Create on
demand
http://orcid-create-on-demand.herokuapp.com
Where to go from here?
• Membership
http://orcid.org/about/membership
• Collect and connect documentation
https://members.orcid.org
• ORCID API documentation
https://members.orcid.org/api
• ORCID API bootcamp (step-by-step introduction)
https://github.com/alainna/VALA2016
• Technical webinars
https://members.orcid.org/event-list
• ORCID Community Engagement & Support team
support@orcid.org

More Related Content

What's hot

ORCID adoption in research workflow
ORCID adoption in research workflowORCID adoption in research workflow
ORCID adoption in research workflowNobuko Miyairi
 
ORCID API in action (A. Wrigley)
ORCID API in action (A. Wrigley)ORCID API in action (A. Wrigley)
ORCID API in action (A. Wrigley)ORCID, Inc
 
What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)ORCID, Inc
 
ORCID Implementation in Open Access Repositories and Institutional Research I...
ORCID Implementation in Open Access Repositories and Institutional Research I...ORCID Implementation in Open Access Repositories and Institutional Research I...
ORCID Implementation in Open Access Repositories and Institutional Research I...Simeon Warner
 
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID, Inc
 
ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID, Inc
 
ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID, Inc
 
9th International Conference on Researches in Science and Technology (ICRST)
9th International Conference on Researches in Science and Technology (ICRST)9th International Conference on Researches in Science and Technology (ICRST)
9th International Conference on Researches in Science and Technology (ICRST)Global R & D Services
 
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)ORCID, Inc
 
ORCID: connecting research and researchers
ORCID: connecting research and researchersORCID: connecting research and researchers
ORCID: connecting research and researchersNobuko Miyairi
 
IFLA Poster: Optimizing Discoverability of Research and Scholarship
IFLA Poster: Optimizing Discoverability of Research and ScholarshipIFLA Poster: Optimizing Discoverability of Research and Scholarship
IFLA Poster: Optimizing Discoverability of Research and ScholarshipORCID, Inc
 
ORCID updates (N. Miyairi)
ORCID updates (N. Miyairi)ORCID updates (N. Miyairi)
ORCID updates (N. Miyairi)ORCID, Inc
 
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)ORCID, Inc
 
Apresentação ORCiD USP 2017
Apresentação ORCiD USP 2017Apresentação ORCiD USP 2017
Apresentação ORCiD USP 2017SIBiUSP
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)ORCID, Inc
 
ORCID in platform research lifecycle products -Elsevier (C. Shillum)
ORCID in platform research lifecycle products -Elsevier (C. Shillum)ORCID in platform research lifecycle products -Elsevier (C. Shillum)
ORCID in platform research lifecycle products -Elsevier (C. Shillum)ORCID, Inc
 
Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)ORCID, Inc
 
ORCID Status & Updates (N. Miyairi)
ORCID Status & Updates (N. Miyairi)ORCID Status & Updates (N. Miyairi)
ORCID Status & Updates (N. Miyairi)ORCID, Inc
 
ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID, Inc
 
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...ORCID, Inc
 

What's hot (20)

ORCID adoption in research workflow
ORCID adoption in research workflowORCID adoption in research workflow
ORCID adoption in research workflow
 
ORCID API in action (A. Wrigley)
ORCID API in action (A. Wrigley)ORCID API in action (A. Wrigley)
ORCID API in action (A. Wrigley)
 
What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)What is the ORCID API and what you can do with it? (R. Peters)
What is the ORCID API and what you can do with it? (R. Peters)
 
ORCID Implementation in Open Access Repositories and Institutional Research I...
ORCID Implementation in Open Access Repositories and Institutional Research I...ORCID Implementation in Open Access Repositories and Institutional Research I...
ORCID Implementation in Open Access Repositories and Institutional Research I...
 
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)ORCID Collect & Connect: understanding integrations and the API (M. Buys)
ORCID Collect & Connect: understanding integrations and the API (M. Buys)
 
ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?ORCID for researchers: What, why, how?
ORCID for researchers: What, why, how?
 
ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)ORCID Integration with Institutional Repositories (D. Grenz)
ORCID Integration with Institutional Repositories (D. Grenz)
 
9th International Conference on Researches in Science and Technology (ICRST)
9th International Conference on Researches in Science and Technology (ICRST)9th International Conference on Researches in Science and Technology (ICRST)
9th International Conference on Researches in Science and Technology (ICRST)
 
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
Identifying Springer's Author (with ORCID iD) on SpringerLink (H. Aziz)
 
ORCID: connecting research and researchers
ORCID: connecting research and researchersORCID: connecting research and researchers
ORCID: connecting research and researchers
 
IFLA Poster: Optimizing Discoverability of Research and Scholarship
IFLA Poster: Optimizing Discoverability of Research and ScholarshipIFLA Poster: Optimizing Discoverability of Research and Scholarship
IFLA Poster: Optimizing Discoverability of Research and Scholarship
 
ORCID updates (N. Miyairi)
ORCID updates (N. Miyairi)ORCID updates (N. Miyairi)
ORCID updates (N. Miyairi)
 
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
MyRID: ORCID Integration in Malaysia (T. Dharmalingam)
 
Apresentação ORCiD USP 2017
Apresentação ORCiD USP 2017Apresentação ORCiD USP 2017
Apresentação ORCiD USP 2017
 
Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)Research Management & Publishing (M. Jagerhorn)
Research Management & Publishing (M. Jagerhorn)
 
ORCID in platform research lifecycle products -Elsevier (C. Shillum)
ORCID in platform research lifecycle products -Elsevier (C. Shillum)ORCID in platform research lifecycle products -Elsevier (C. Shillum)
ORCID in platform research lifecycle products -Elsevier (C. Shillum)
 
Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)Spreading the ORCID word: ORCID communications webinar (June 2016)
Spreading the ORCID word: ORCID communications webinar (June 2016)
 
ORCID Status & Updates (N. Miyairi)
ORCID Status & Updates (N. Miyairi)ORCID Status & Updates (N. Miyairi)
ORCID Status & Updates (N. Miyairi)
 
ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)ORCID cross-sector application and use cases (L. Haak)
ORCID cross-sector application and use cases (L. Haak)
 
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...
ORCID iDs in the Academic Publishing Workflow: ORCID and the Publishing Commu...
 

Viewers also liked

ORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID, Inc
 
How ORCID is innovating research evaluation workflow? (N. Miyairi)
How ORCID is innovating research evaluation workflow? (N. Miyairi)How ORCID is innovating research evaluation workflow? (N. Miyairi)
How ORCID is innovating research evaluation workflow? (N. Miyairi)ORCID, Inc
 
Communication Webinar Spanish
Communication Webinar SpanishCommunication Webinar Spanish
Communication Webinar SpanishORCID, Inc
 
Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...ORCID, Inc
 
ORCID identifiers in research workflows - PLOS (V. Kiermer)
ORCID identifiers in research workflows - PLOS (V. Kiermer)ORCID identifiers in research workflows - PLOS (V. Kiermer)
ORCID identifiers in research workflows - PLOS (V. Kiermer)ORCID, Inc
 
Enabling information interoperability with identifiers (L. Haak)
 Enabling information interoperability with identifiers (L. Haak) Enabling information interoperability with identifiers (L. Haak)
Enabling information interoperability with identifiers (L. Haak)ORCID, Inc
 
ORCID-CA consortium update (Geoff Harder)
ORCID-CA consortium update (Geoff Harder)ORCID-CA consortium update (Geoff Harder)
ORCID-CA consortium update (Geoff Harder)ORCID, Inc
 
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)    ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz) ORCID, Inc
 
ROMEO Process Pathways: ORCID integration (Gord MacDonald)
ROMEO Process Pathways: ORCID integration (Gord MacDonald)ROMEO Process Pathways: ORCID integration (Gord MacDonald)
ROMEO Process Pathways: ORCID integration (Gord MacDonald)ORCID, Inc
 
The Latest on ORCID API v2
The Latest on ORCID API v2 The Latest on ORCID API v2
The Latest on ORCID API v2 ORCID, Inc
 
ORCID Communications & Messaging
ORCID Communications & MessagingORCID Communications & Messaging
ORCID Communications & MessagingORCID, Inc
 
Research in a world where machines read (Matthew Buys)
Research in a world where machines read (Matthew Buys)Research in a world where machines read (Matthew Buys)
Research in a world where machines read (Matthew Buys)ORCID, Inc
 
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)ORCID, Inc
 
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID, Inc
 
ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID, Inc
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration VideosORCID, Inc
 
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)ORCID, Inc
 
ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID, Inc
 
Overview of ORCID for researchers
Overview of ORCID for researchersOverview of ORCID for researchers
Overview of ORCID for researchersORCID, Inc
 

Viewers also liked (19)

ORCID API Perks & Pitfalls
ORCID API Perks & PitfallsORCID API Perks & Pitfalls
ORCID API Perks & Pitfalls
 
How ORCID is innovating research evaluation workflow? (N. Miyairi)
How ORCID is innovating research evaluation workflow? (N. Miyairi)How ORCID is innovating research evaluation workflow? (N. Miyairi)
How ORCID is innovating research evaluation workflow? (N. Miyairi)
 
Communication Webinar Spanish
Communication Webinar SpanishCommunication Webinar Spanish
Communication Webinar Spanish
 
Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...Core Principles of ORCID: Researcher control, community governance, openness,...
Core Principles of ORCID: Researcher control, community governance, openness,...
 
ORCID identifiers in research workflows - PLOS (V. Kiermer)
ORCID identifiers in research workflows - PLOS (V. Kiermer)ORCID identifiers in research workflows - PLOS (V. Kiermer)
ORCID identifiers in research workflows - PLOS (V. Kiermer)
 
Enabling information interoperability with identifiers (L. Haak)
 Enabling information interoperability with identifiers (L. Haak) Enabling information interoperability with identifiers (L. Haak)
Enabling information interoperability with identifiers (L. Haak)
 
ORCID-CA consortium update (Geoff Harder)
ORCID-CA consortium update (Geoff Harder)ORCID-CA consortium update (Geoff Harder)
ORCID-CA consortium update (Geoff Harder)
 
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)    ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)
ORCID in the research lifecycle, EBSCO: PlumX (T. Scholtz)
 
ROMEO Process Pathways: ORCID integration (Gord MacDonald)
ROMEO Process Pathways: ORCID integration (Gord MacDonald)ROMEO Process Pathways: ORCID integration (Gord MacDonald)
ROMEO Process Pathways: ORCID integration (Gord MacDonald)
 
The Latest on ORCID API v2
The Latest on ORCID API v2 The Latest on ORCID API v2
The Latest on ORCID API v2
 
ORCID Communications & Messaging
ORCID Communications & MessagingORCID Communications & Messaging
ORCID Communications & Messaging
 
Research in a world where machines read (Matthew Buys)
Research in a world where machines read (Matthew Buys)Research in a world where machines read (Matthew Buys)
Research in a world where machines read (Matthew Buys)
 
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)
DOIs and Other Persistent identifiers in Research Data (Eugene Barsky)
 
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
ORCID in the research lifecycle, Elsevier: Scopus, PURE, SciVal (L. Schoombee)
 
ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)ORCID as a Community Initiative (N. Miyairi)
ORCID as a Community Initiative (N. Miyairi)
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration Videos
 
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
Introduction and Welcome to the 2017 ORCID Malaysia Workshop (N. Miyairi)
 
ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)ORCID at UniKL (P. Hamzah)
ORCID at UniKL (P. Hamzah)
 
Overview of ORCID for researchers
Overview of ORCID for researchersOverview of ORCID for researchers
Overview of ORCID for researchers
 

Similar to Connect researchers to ORCID with APIs

ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID, Inc
 
Integrating with the ORCID API
Integrating with the ORCID APIIntegrating with the ORCID API
Integrating with the ORCID APINobuko Miyairi
 
ORCID API (M. Buys)
 ORCID API (M. Buys) ORCID API (M. Buys)
ORCID API (M. Buys)ORCID, Inc
 
ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID, Inc
 
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...ORCID, Inc
 
Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)ORCID, Inc
 
ORCID API Workshop OR2015
ORCID API Workshop OR2015ORCID API Workshop OR2015
ORCID API Workshop OR2015ORCID, Inc
 
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)ORCID, Inc
 
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIWebinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIARDC
 
VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013Rebecca Bryant, PhD
 
ORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID, Inc
 
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...ORCID, Inc
 
Scalable Data Management: Automation and the Modern Research Data Portal
Scalable Data Management: Automation and the Modern Research Data PortalScalable Data Management: Automation and the Modern Research Data Portal
Scalable Data Management: Automation and the Modern Research Data PortalGlobus
 
ORCID Meets Mozart 20150824
ORCID Meets Mozart 20150824ORCID Meets Mozart 20150824
ORCID Meets Mozart 20150824ORCID, Inc
 
Paglione outreach tech presentation
Paglione outreach tech presentationPaglione outreach tech presentation
Paglione outreach tech presentationORCID, Inc
 
Beyond what is ORCID... using the API (L. Paglione)
Beyond what is ORCID... using the API (L. Paglione)Beyond what is ORCID... using the API (L. Paglione)
Beyond what is ORCID... using the API (L. Paglione)ORCID, Inc
 
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID, Inc
 
ORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID, Inc
 

Similar to Connect researchers to ORCID with APIs (20)

ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)ORCID API in Action (A. Wrigley)
ORCID API in Action (A. Wrigley)
 
Integrating with the ORCID API
Integrating with the ORCID APIIntegrating with the ORCID API
Integrating with the ORCID API
 
ORCID API (M. Buys)
 ORCID API (M. Buys) ORCID API (M. Buys)
ORCID API (M. Buys)
 
ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...ORCID auto-update in the publishing process: From submission to your systems ...
ORCID auto-update in the publishing process: From submission to your systems ...
 
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...
ORCID at scale: Approaches to adoption and implementation (A. Meadows/L. Pagl...
 
Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)Sharing information between systems: The ORCID API (Alainna Wrigley)
Sharing information between systems: The ORCID API (Alainna Wrigley)
 
ORCID API Workshop OR2015
ORCID API Workshop OR2015ORCID API Workshop OR2015
ORCID API Workshop OR2015
 
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)Collect and Connect: Integrating ORCID into research workflows (M. Buys)
Collect and Connect: Integrating ORCID into research workflows (M. Buys)
 
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID APIWebinar: API Extravaganza! Combining Google Analytics and ORCID API
Webinar: API Extravaganza! Combining Google Analytics and ORCID API
 
Your work is distinctive. What about your name? Matthew Buys
Your work is distinctive. What about your name? Matthew BuysYour work is distinctive. What about your name? Matthew Buys
Your work is distinctive. What about your name? Matthew Buys
 
VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013VIVO and persistent identifiers: Integrating ORCID_08152013
VIVO and persistent identifiers: Integrating ORCID_08152013
 
ORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital LibrariesORCID Tech Intro - California Digital Libraries
ORCID Tech Intro - California Digital Libraries
 
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
Training, Funding, Publishing, and Tracking Research: The role of ORCID inter...
 
Scalable Data Management: Automation and the Modern Research Data Portal
Scalable Data Management: Automation and the Modern Research Data PortalScalable Data Management: Automation and the Modern Research Data Portal
Scalable Data Management: Automation and the Modern Research Data Portal
 
ORCID Meets Mozart 20150824
ORCID Meets Mozart 20150824ORCID Meets Mozart 20150824
ORCID Meets Mozart 20150824
 
Paglione outreach tech presentation
Paglione outreach tech presentationPaglione outreach tech presentation
Paglione outreach tech presentation
 
Beyond what is ORCID... using the API (L. Paglione)
Beyond what is ORCID... using the API (L. Paglione)Beyond what is ORCID... using the API (L. Paglione)
Beyond what is ORCID... using the API (L. Paglione)
 
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
ORCID at Scale: Approaches to Adoption and Implementation (A. Meadows/L. Pagl...
 
ORCID Technical Intro - English
ORCID Technical Intro - EnglishORCID Technical Intro - English
ORCID Technical Intro - English
 
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
Holt "Working with Scholarly APIs: A NISO Training Series, Session Two: ORCID"
 

More from ORCID, Inc

ORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID, Inc
 
Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)ORCID, Inc
 
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID, Inc
 
What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)ORCID, Inc
 
ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID, Inc
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration VideosORCID, Inc
 
What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)ORCID, Inc
 
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...ORCID, Inc
 
Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)ORCID, Inc
 
ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)ORCID, Inc
 
CHORUS: A Story About Efficiencies (Howard Ratner)
CHORUS: A Story About Efficiencies (Howard Ratner)CHORUS: A Story About Efficiencies (Howard Ratner)
CHORUS: A Story About Efficiencies (Howard Ratner)ORCID, Inc
 
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)ORCID, Inc
 
ORCID Update: American Geophysical Union (Brooks Hanson)
ORCID Update: American Geophysical Union (Brooks Hanson)ORCID Update: American Geophysical Union (Brooks Hanson)
ORCID Update: American Geophysical Union (Brooks Hanson)ORCID, Inc
 
ORCID Update (October 2016)
ORCID Update (October 2016)ORCID Update (October 2016)
ORCID Update (October 2016)ORCID, Inc
 

More from ORCID, Inc (14)

ORCID @ Khalifa University
ORCID @ Khalifa UniversityORCID @ Khalifa University
ORCID @ Khalifa University
 
Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)Benefits to researchers who use ORCID (P. Purnell)
Benefits to researchers who use ORCID (P. Purnell)
 
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
ORCID in the Publishing Workflow (Mochammad Tanzil Multazam)
 
What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)What in the World is ORCID? (Haak)
What in the World is ORCID? (Haak)
 
ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)ORCID as a Community Initiative (Miyairi)
ORCID as a Community Initiative (Miyairi)
 
ORCID Integration Videos
ORCID Integration VideosORCID Integration Videos
ORCID Integration Videos
 
What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)What’s New in ORCID Tech 2016 (Robert Peters)
What’s New in ORCID Tech 2016 (Robert Peters)
 
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
Raising Awareness & Encouraging ORCID Registrations as an Author Services Pro...
 
Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)Convey ORCID Integration Presentation (Heather Pierce)
Convey ORCID Integration Presentation (Heather Pierce)
 
ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)ORCID and Peer Review in EJPress (Anna Jester)
ORCID and Peer Review in EJPress (Anna Jester)
 
CHORUS: A Story About Efficiencies (Howard Ratner)
CHORUS: A Story About Efficiencies (Howard Ratner)CHORUS: A Story About Efficiencies (Howard Ratner)
CHORUS: A Story About Efficiencies (Howard Ratner)
 
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)
Digital Science Presentation at ORCID Outreach Meeting (Ashlea Higgs)
 
ORCID Update: American Geophysical Union (Brooks Hanson)
ORCID Update: American Geophysical Union (Brooks Hanson)ORCID Update: American Geophysical Union (Brooks Hanson)
ORCID Update: American Geophysical Union (Brooks Hanson)
 
ORCID Update (October 2016)
ORCID Update (October 2016)ORCID Update (October 2016)
ORCID Update (October 2016)
 

Recently uploaded

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxCarlos105
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 

Recently uploaded (20)

How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptxBarangay Council for the Protection of Children (BCPC) Orientation.pptx
Barangay Council for the Protection of Children (BCPC) Orientation.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 

Connect researchers to ORCID with APIs

  • 1. orcid.orgContact Info: p. +1-301-922-9062 a. 10411 Motor City Drive, Suite 750, Bethesda, MD 20817 USA Getting connected with the ORCID API Alainna Therese Wrigley ORCID Community Engagement & Support support@orcid.org | orcid.org/0000-0002-6036-0903
  • 2. ORCID provides 2orcid.org Persistent digital identifiers to distinguish researchers from each other Member-built integrations that connect researchers and their activities/affiliations A hub for synchronizing machine-readable connections between identifiers for people, organizations, and research activities ✔ Plumbing for research information ✔ Tools to build trust in digital information
  • 3. 3 Organizations are use ORCID APIs to authenticate, collect, display, and connect persistent identifiers for people, places, and things in research workflows ORCID enables assertions
  • 4. orcid.org 4 The other things that need to happen • Communications • Roll-out timing • Encouraging use …are as important and can be much harder than using the API Let’s not get ahead of ourselves...
  • 5. orcid.org 5 API (Application Programming Interface): an interface that lets one software program “talk” with another, exchanging data behind the scenes. What is an API?
  • 6. orcid.org 6 • Permissions/scopes: your contract with the user • ORCID message (schema): format of the data exchanged • OAuth calls – the permission protocol: how you “execute the contract” • ORCID-specific calls: providing & receiving information with the registry The ORCID API in a nutshell PHOTO: 3/2 nuts © M.G. Kafkas https://flic.kr/p/4XytpS
  • 7. orcid.org 7 ORCID Public and Member APIs API Features Public API Freely available to anyone • Authenticate: Get a user’s authenticated ORCID iD • Read (Public): Search/retrieve public data • Create: Facilitate creation of new ORCID records (via on-demand process) Member API ORCID member organizations (Sandbox test environment freely available to anyone) • Read (Limited): Search/retrieve "limited-access" data • Add: Post new items to a record • Update: Edit or delete items you previously added • Webhooks (Premium only): Receive notifications of updates
  • 8. orcid.org 8 Connecting to the ORCID Registry Two models: 1. Connect via a vendor system • Manuscript submission/publication • Document/data repositories • Profile systems • CRIS systems 2. Develop a custom connection
  • 9. orcid.org 9 Custom integration Via the ORCID APIs • Fine-tuned control and permissions • Customized buttons, user flows, & user feedback Current integration list: http://members.orcid.org/current-integrations
  • 10. orcid.org 10 Vendor system integration Publishing • eJournal Press • Editorial Manager • ScholarOne Document / data repositories • DSpace • ePrints • Hydra/Fedora CRIS Systems • Converis • Elements • IRMA • Pivot • PlumX • Pure • Vivo http://members.orcid.org/orcid-enabled-systems
  • 11. 29 June 2016 orcid.org 11
  • 12. Collect & Connect goals • Clarify how plumbing works • Standardize experience • Standard connection installation guidelines • Increase predictability and trust in the “utility” • Community approach to reliable connections 29 June 2016 orcid.org 12
  • 13. Collect & Connect 29 June 2016 orcid.org 13 Collect Display Connect SynchAuthenticate!
  • 14. Collect COLLECT validated ORCID iDs for individuals • Explain what ORCID is • Explain why you’re collecting iDs • Consistent user experience • Authenticated connections 29 June 2016 orcid.org 14 Ensure individuals are correctly connected with your institution Converis, Pure, Symplectic Elements, VIVO use the OAuth process
  • 15. Display 29 June 2016 orcid.org 15 DISPLAY iDs on your website, platform, systems • iDs shown as a link • iDs in metadata • Use the ORCID Member logo • Explain why iDs are collected Signal that your systems are plumbed to support ORCID iDs http://orcid.org/trademark-and-id-display-guidelines
  • 16. Connect 29 June 2016 orcid.org 16 CONNECT your data to ORCID Records • Request permission to write to Records • Store long-lived tokens • Add data that you uniquely can (authoritative) • Explain the connection Enable researchers to provide validated data to others https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
  • 17. Synchronize 29 June 2016 orcid.org 17 SYNCHRONIZE with your systems • Update information when it changes • Auto-add new information • Search & link wizards • Sync data from others Saved time, better reporting, improved information flow https://members.orcid.org/api/tutorial-webhooks https://orcid.org/blog/2015/10/26/auto-update-has-arrived-orcid-records-move-next-level
  • 18. 29 June 2016 18 DISPLAY • In metadata • On sites • In publications CONNECT • Affiliations (employers) • Works (publishers) • Awards (funders) orcid.org Collect & Connect flow
  • 19. Get permission, use permission ORCID Record Yes! Do you have permission to do what you want to do? Get the permission; store iD and “token” Read the record or update the record No OAuth 29 June 2016 19orcid.org
  • 20. PHOTO: Job Meeting www.flickr.com/photos/jobmeeting/14375164286 Involving the user orcid.org 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 “fancy” URL • Prior iD not needed • Hard things: promotion, finding touch points
  • 21. Get permission: touch points Look for natural fits: • Your sign in – why not link your iD? • Your account settings/ user profile • Submission (of any type) • Form fills: pre-fill from your Record! • Registration: for conference or meeting • Reporting: Link your iD to get started
  • 22. Step 1: fancy URL https://sandbox.orcid.org/oauth/authorize? client_id=APP-XT8FBKJRO3MR8WDR& response_type=code& scope=/orcid-profile/read-limited%20 /activities/update& redirect_uri=https://my.URL.org& family_names=Researcher&given_names=Bob& email=bobresearcher@mailinator.com& orcid=0000-0001-6356-0580 The base URL – displays the screen who’s asking? what permission? where the user goes next Personalize the experience The OAuth call: part I
  • 23. Step 2: User feedback & Auth code The magic code ORCID sends the user to your redirect, with a code https://my.URL.org?htA3yE you... • Save the code – you need it for the next step • Display something useful to the user • Authorize: thanks for your permission! • Deny: are you sure you don’t want to give permission?
  • 24. Step 3a: Change code into token Use the code to gain access using the ORCID API https://api.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 looks like URLs (RESTful) what format? The magic code confirming that you are the right one to get this information
  • 25. Step 3b: Store the result The result of the call "access_token”:"6710dfee-6aab-445b-a266-205dd9085273", "token_type” : "bearer", "expires_in” : 631138518, "scope” : "/orcid-profile/read-limited /activities/update", "orcid” : "0000-0001-6356-0580", "name” : "Bob Researcher" store the access token and iD when permission expires (in seconds) your permission – executed contract iD & name for the person who gave permission What you can do ✔ iD Collected!
  • 26. You have the iD, now display it! iDs in profiles
  • 27. Get permission, use permission ORCID Record Yes! Do you have permission to do what you want to do? Get the permission; store iD and “token” Read the record or update the record No OAuth 29 June 2016 27orcid.org
  • 28. Connect to send data • Read data: GET • Add data: POST • Update data: PUT BASE URL: https://sandbox.api.orcid.org/v1.2/0000-0001-6356-0580/affiliations HEADERS: accept:application/json (reading) content-type:application/json Authorization: Bearer 6710dfee-6aab-445b-a266-205dd9085273 DATA (if adding or updating): the file location=@file_location_name Relevant area: /orcid-bio, /funding data format Access token from before
  • 29. Send data in ORCID Schema
  • 30. User sees new info on record
  • 31. API in action: Create on demand http://orcid-create-on-demand.herokuapp.com
  • 32. Where to go from here? • Membership http://orcid.org/about/membership • Collect and connect documentation https://members.orcid.org • ORCID API documentation https://members.orcid.org/api • ORCID API bootcamp (step-by-step introduction) https://github.com/alainna/VALA2016 • Technical webinars https://members.orcid.org/event-list • ORCID Community Engagement & Support team support@orcid.org

Editor's Notes

  1. This requires collaborations among all actors in the research community: identifier providers, for sure, but also publishers, societies, universities, repositories, funders, and researchers themselves. This is not a trivial endeavor. Everyone needs to expend some work. But, it is happening. Here is an example of one such collaboration involving ORCID, Ringgold, and the IT, library, research office, and faculty affairs at a large research university. Lots of moving parts, culminating in a public, electronic, and validated record of a person’s affiliation. This record is available through a public API and can be used during a manuscript submission or peer review invitation process to auto-populate and/or validate affiliation. Save your authors time, improve data quality, and improve trust in one package.
  2. And this is a high-level infographic of how ORCID works – with the collection of iDs from researchers by their publishers, employers, and funders, who can then make validated assertions about the researcher’s publications, affiliations, and grants respectively and connect them back to their ORCID record.
  3. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  4. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  5. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  6. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  7. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  8. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  9. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  10. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  11. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  12. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  13. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.
  14. It is the researchers that benefit greatly from ORCID iDs. They can use them throughout their career, and can already use them to distinguish themselves in publications and grants. And many are starting to see the benefits of using ORCID records in outcome tracking. For example, researchers in Portugal who receive federal funding provide their ORCID iD, and benefit from coordinated outcomes reporting by using the ORCID registry as a hub.