This service stores information about a user.
Host Endpoint: http://localhost:8000/users/<id>
Docker Network Endpoint: http://user-service:8000/users/<id>
Method: GET
Description: Retrieve a specific user record, also used as a proxy for authorization if a user record can't be found.
Success
{
"id": <int>,
"first_name": <string>,
"last_name": <string>,
}
Error
{
"message": <error message>
}
Status Code | Description |
---|---|
200 | OK |
404 | Record not Found |