Add Passwordless/Passkey Registration Link
POSThttps://$CUSTOM-DOMAIN/management/v1/users/:userId/passwordless/_link
Adds a new passwordless/passkey authenticator link to the user and returns it in the response. The link enables the user to register a new device if current passwordless/passkey devices are all platform authenticators. e.g. User has already registered Windows Hello and wants to register FaceID on the iPhone
Deprecated: please use user service v2 RegisterPasskey
Request​
Path Parameters
Header Parameters
The default is always the organization of the requesting user. If you like to get a user from another organization include the header. Make sure the requesting user has permission in the requested organization.
Responses​
- 200
- default
OK
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:15.420Z",
"changeDate": "2025-04-03T09:33:15.420Z",
"resourceOwner": "69629023906488334"
},
"link": "string",
"expiration": "string"
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:15.420Z",
"changeDate": "2025-04-03T09:33:15.420Z",
"resourceOwner": "69629023906488334"
},
"link": "string",
"expiration": "string"
}
- Schema
- Example (from schema)
Schema
details
object
{
"details": {
"sequence": "2",
"creationDate": "2025-04-03T09:33:15.420Z",
"changeDate": "2025-04-03T09:33:15.420Z",
"resourceOwner": "69629023906488334"
},
"link": "string",
"expiration": "string"
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://$CUSTOM-DOMAIN/management/v1/users/:userId/passwordless/_link' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'