Overview
This endpoint retrieves the current buyer’s information from the Ordering bounded context. In our domain model, a Buyer represents a customer entity with purchasing capabilities and order history.
Implementation Details
The Get Buyer operation is implemented using the CQRS pattern with a dedicated query handler:
Loading graph...
Key Components
- GetBuyerQuery: Implements
IQuery<BuyerDto>
to retrieve a buyer by ID - Role-Based Access Control: Admins can retrieve any buyer, regular users can only retrieve their own data
- Feature Flag: The
EnableAddress
feature flag controls whether address information is included in the response - BuyerDto: Lightweight projection of the Buyer aggregate for read operations
Domain Significance
Within the Ordering domain, the Buyer aggregate is responsible for:
- Maintaining buyer identity and preferences
- Tracking order history and purchasing patterns
- Managing payment methods and shipping addresses
Technical Implementation
This endpoint follows the CQRS pattern using a dedicated query handler that:
- Authenticates the current user and checks their roles
- For admin users, uses the provided buyer ID; for regular users, extracts the ID from their claims
- Retrieves the corresponding Buyer aggregate from the repository
- Maps the domain entity to a DTO for the response
- Conditionally includes or excludes address information based on feature flag
Administrative Access
Administrators can access specific buyer information by providing an optional query parameter:
?id={buyerId}
: Retrieve a specific buyer by their unique identifier (admin only)
When accessed by regular users, the endpoint always returns the buyer information associated with the authenticated user’s identity, regardless of any ID parameter provided.
Architecture
GET (/api/v1/buyers/me)
Query Parameters
- id (query) (optional): The buyer ID to retrieve (only used when the requester has admin role)
Example Usage
Regular User
curl -X GET "https://api.bookworm.com/api/v1/buyers/me" \ -H "Authorization: Bearer <your-jwt-token>"
Admin User
curl -X GET "https://api.bookworm.com/api/v1/buyers/me?id={buyerId}" \ -H "Authorization: Bearer <admin-jwt-token>"
Responses
200 OK
Returns the buyer information.
Example Response
{ "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "name": "John Doe", "address": "123 Main St, New York, NY"}
401 Unauthorized
Returned when the request lacks valid authentication credentials.
403 Forbidden
Returned when a non-admin user attempts to access another user’s buyer information.
404 Not Found
Returned when the requested buyer does not exist.