POST
/
user
/
webauthn
/
verify
curl --request POST \
  --url https://local.auth.local.nhost.run/v1/user/webauthn/verify \
  --header 'Content-Type: application/json' \
  --data '{
  "credential": {},
  "nickname": "<string>"
}'
{
  "error": "invalid-request",
  "message": "The request payload is incorrect",
  "status": 400
}

Body

application/json
credential
object
required
nickname
string

Response

400
application/json
The payload is invalid
error
enum<string>
Available options:
invalid-request
message
enum<string>
Available options:
The request payload is incorrect
status
enum<number>
Available options:
400