Skip to main content
Start explicit SSO linking for an existing password-backed account
curl --request POST \
  --url https://api.acornops.dev/api/v1/auth/oidc/link/start \
  --header 'Content-Type: application/json' \
  --cookie acornops_cp_session= \
  --data '
{
  "currentPassword": "<string>",
  "returnTo": "/settings"
}
'
{
  "authorizationUrl": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.acornops.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

acornops_cp_session
string
cookie
required

Body

application/json
currentPassword
string<password>
required
returnTo
string
Example:

"/settings"

Response

Returns an OIDC authorization URL for the browser to follow.

authorizationUrl
string<uri>
required