orcid_email {rorcid} | R Documentation |
Get education information for a person
orcid_email(orcid, ...)
orcid |
(character) Orcid identifier(s), of the form XXXX-XXXX-XXXX-XXXX. required. |
... |
Curl options passed on to |
This function is vectorized, so you can pass in many ORCID's, and there's an element returned for each ORCID you put in.
A list of results for each Orcid ID passed in, with each element named by the Orcid ID
## Not run:
res <- orcid_email(orcid = "0000-0002-1642-628X")
res$`0000-0002-1642-628X`
names(res$`0000-0002-1642-628X`)
res$`0000-0002-1642-628X`$`email`
## End(Not run)