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
}
Verify Security Key
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
}
The body is of type object
.
The payload is invalid
The response is of type object
.
Was this page helpful?