Initiate ORCID OAuth verification flow. Returns a URL to redirect the user to ORCID for authentication. Requires authentication.
Output
Encoding
application/jsonauthorizeUrl
stringuri
Required
Full ORCID OAuth authorization URL to redirect the user to
Errors
AuthenticationRequired
OrcidNotConfigured
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "OrcidNotConfigured"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"authorizeUrl"
],
"properties": {
"authorizeUrl": {
"type": "string",
"format": "uri",
"description": "Full ORCID OAuth authorization URL to redirect the user to"
}
}
},
"encoding": "application/json"
},
"description": "Initiate ORCID OAuth verification flow. Returns a URL to redirect the user to ORCID for authentication. Requires authentication."
}