cURL
curl --request GET \ --url https://api.gofermata.com/v1/users/{user_id} \ --header 'Authorization: Basic <encoded-value>'
{ "id": 142, "firstName": "Alice", "lastName": "Smith", "email": "alice.smith@gmail.com", "dateOfBirth": "1997-10-31", "emailVerified": true, "signUpDate": "2019-08-24" }
Retrieve the information of the user with the matching user ID.
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
User Found
The response is of type object.
object