Overview
Create a new buyer in the Ordering bounded context. The Buyer represents a crucial aggregate root in the Ordering domain model that encapsulates customer purchasing identity and address information. This endpoint requires authentication, as the buyer is created based on the authenticated user’s identity.
Implementation Details
The Create Buyer operation is implemented using the CQRS pattern with a command handler:
Loading graph...
Key Components
- CreateBuyerCommand: Implements
ICommand<Guid>
to create a new buyer and return its ID - Address Value Object: Encapsulates the buyer’s address information (street, city, province)
- Buyer Aggregate: The root entity that maintains the buyer’s identity and address
- Claims Extraction: The user’s ID and name are extracted from the authentication claims
Business Rules
- The buyer ID is automatically derived from the authenticated user’s identity
- The buyer name is extracted from the authenticated user’s claims
- Address information (street, city, province) is required and validated
- Each field has a maximum length constraint (defined in DataSchemaLength.Medium)
- The buyer is created with an empty collection of orders
Architecture
POST (/api/v1/buyers)
Request
Example Usage
curl -X POST "https://api.bookworm.com/api/v1/buyers" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer <your-jwt-token>" \ -d '{ "street": "123 Main Street", "city": "New York", "province": "NY" }'
Responses
201 Created
- Returns the ID of the newly created buyer.
- Location header includes a versioned URL to the newly created resource
- Format:
/api/v1/buyers/{guid}
400 Bad Request
Returned when the request validation fails.
{ "type": "https://tools.ietf.org/html/rfc7231#section-6.5.1", "title": "Bad Request", "status": 400, "errors": { "Street": ["The Street field is required."], "City": ["The City field is required."], "Province": ["The Province field is required."] }}
401 Unauthorized
Returned when the request lacks valid authentication credentials.
409 Conflict
Returned when a buyer with the same ID already exists.