POST
/
users
curl --request POST \
  --url https://backendapi.corbado.io/v2/users \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "fullName": "<string>",
  "status": "pending",
  "explicitWebauthnID": "<string>"
}'
{
  "userID": "<string>",
  "fullName": "<string>",
  "status": "pending",
  "explicitWebauthnID": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Response

200
application/json

User has been created

The response is of type object.