Confirm linking a new provider to existing account.
Called after user confirms they want to link the provider when ‘needs_linking’ status is returned from login.
curl --request POST \
--url https://api.example.com/api/v1/providers/confirm-linking \
--header 'Content-Type: application/json' \
--data '
{
"linking_token": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Confirm account linking
Token from pending_provider_links
Successful Response
curl --request POST \
--url https://api.example.com/api/v1/providers/confirm-linking \
--header 'Content-Type: application/json' \
--data '
{
"linking_token": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}