powered by
Fetches invited position records for an ORCID identifier, such as visiting professorships, guest lectureships, etc.
orcid_invited_positions(orcid_id, token = NULL)
A data.table with the following columns:
ORCID identifier
Unique identifier for this invited position record
Name of the hosting organization
Department name (if available)
Position title
Position start date (ISO format)
Position end date (ISO format)
City of organization
State/region of organization
Country of organization
Returns an empty data.table with the same structure if no invited position records are found.
Character string. A valid ORCID identifier in the format XXXX-XXXX-XXXX-XXXX. Can also handle URLs like https://orcid.org/XXXX-XXXX-XXXX-XXXX.
Character string or NULL. Optional API token for authenticated requests. If NULL (default), checks the ORCID_TOKEN environment variable.
This function queries the ORCID public API endpoint: https://pub.orcid.org/v3.0/{orcid-id}/invited-positions
https://pub.orcid.org/v3.0/{orcid-id}/invited-positions
ORCID API Documentation: https://info.orcid.org/documentation/api-tutorials/
orcid_employments, orcid_activities
orcid_employments
orcid_activities
if (FALSE) { # Fetch invited positions positions <- orcid_invited_positions("0000-0002-1825-0097") print(positions) }
Run the code above in your browser using DataLab