Skip to main content
POST
/
auth
/
handoff
/
complete
Complete handoff
curl --request POST \
  --url https://api.fluxer.app/v1/auth/handoff/complete \
  --header 'Content-Type: application/json' \
  --data '
{
  "code": "<string>",
  "token": "<string>",
  "user_id": "<string>"
}
'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Body

application/json
code
string
required

The handoff code from the initiating session

token
string
required

The authentication token to transfer

user_id
string
required

The user ID associated with the token

Response

No Content