GET
/
users
/
{userID}
curl --request GET \
  --url https://backendapi.corbado.io/v2/users/{userID} \
  --header 'Authorization: Basic <encoded-value>'
{
  "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.

Path Parameters

userID
string
required

ID of user

Response

200
application/json

User has been returned

The response is of type object.