Defining API Endpoints with Swagger Annotations

Explore practical examples of defining API endpoints using Swagger annotations for clear API documentation.
By Jamie

Introduction to Swagger Annotations

Swagger is a powerful tool that simplifies the process of defining APIs through clear documentation. By using annotations, developers can easily create a visual representation of their API endpoints, making it easier for others to understand and utilize them. Below are three practical examples of defining API endpoints with Swagger annotations, which demonstrate different use cases and their implementation.

Example 1: User Registration Endpoint

Context

In a typical web application, user registration is a critical feature. This example illustrates how to define an API endpoint for user registration using Swagger annotations, ensuring clear documentation for developers.

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.springframework.web.bind.annotation.*;

@Api(tags = "User")
@RestController
@RequestMapping("/api/v1/users")
public class UserController {

    @ApiOperation(value = "Register a new user", notes = "This endpoint allows new users to register by providing their details.")
    @ApiResponses({
        @ApiResponse(code = 201, message = "User registered successfully"),
        @ApiResponse(code = 400, message = "Invalid input data")
    })
    @PostMapping("/register")
    public ResponseEntity<String> registerUser(@RequestBody User user) {
        // Registration logic here
        return ResponseEntity.status(HttpStatus.CREATED).body("User registered successfully");
    }
}

Notes

  • Ensure that the User class contains fields such as username, password, and email, with appropriate validation annotations.
  • This example highlights the use of HTTP status codes to indicate success or failure, enhancing the clarity of the API documentation.

Example 2: Fetching Product Details Endpoint

Context

In an e-commerce application, an endpoint for fetching product details is essential. This example demonstrates how to document this API endpoint using Swagger annotations effectively.

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.springframework.web.bind.annotation.*;

@Api(tags = "Product")
@RestController
@RequestMapping("/api/v1/products")
public class ProductController {

    @ApiOperation(value = "Get product details", notes = "Retrieve the details of a specific product based on its ID.")
    @ApiResponses({
        @ApiResponse(code = 200, message = "Product details retrieved successfully"),
        @ApiResponse(code = 404, message = "Product not found")
    })
    @GetMapping("/{id}")
    public ResponseEntity<Product> getProductById(
            @ApiParam(value = "ID of the product to retrieve", required = true) @PathVariable Long id) {
        // Logic to fetch product details
        return ResponseEntity.ok(product);
    }
}

Notes

  • The use of @ApiParam enhances the documentation by specifying that the product ID is a required parameter.
  • This example can be extended to include additional response codes for other potential errors, improving the overall robustness of the API documentation.

Example 3: Updating Order Status Endpoint

Context

In a logistics application, updating the status of an order is a common operation. This example shows how to define an API endpoint for updating an order’s status using Swagger annotations.

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.springframework.web.bind.annotation.*;

@Api(tags = "Order")
@RestController
@RequestMapping("/api/v1/orders")
public class OrderController {

    @ApiOperation(value = "Update order status", notes = "Change the status of an existing order.")
    @ApiResponses({
        @ApiResponse(code = 200, message = "Order status updated successfully"),
        @ApiResponse(code = 404, message = "Order not found"),
        @ApiResponse(code = 400, message = "Invalid status provided")
    })
    @PutMapping("/{id}/status")
    public ResponseEntity<String> updateOrderStatus(
            @PathVariable Long id, @RequestBody String status) {
        // Logic to update order status
        return ResponseEntity.ok("Order status updated successfully");
    }
}

Notes

  • This example utilizes the @PutMapping annotation to signify an update operation, which is a common RESTful practice.
  • Consider adding a validation layer to check for valid status inputs, enhancing the integrity of the API.

With these examples of defining API endpoints with Swagger annotations, developers can create clear and concise documentation that enhances the usability and understanding of their APIs.