* docs improvements and changes * updated module definition * modules + dml changes * fix build * fix vale error * fix lint errors * fixes to stripe docs * fix condition * fix condition * fix module defintion * fix checkout * disable UI action * change oas preview action * flatten provider module options * fix lint errors * add module link docs * pr comments fixes * fix vale error * change node engine version * links -> linkable * add note about database name * small fixes * link fixes * fix response code in api reference * added migrations step
45 lines
1019 B
Plaintext
45 lines
1019 B
Plaintext
export const metadata = {
|
|
title: `${pageNumber} HTTP Methods`,
|
|
}
|
|
|
|
# {metadata.title}
|
|
|
|
In this chapter, you'll learn about how to add new API routes for each HTTP method.
|
|
|
|
## HTTP Method Handler
|
|
|
|
An API route is created for every HTTP method you export a handler function for in a route file.
|
|
|
|
Allowed HTTP methods are: `GET`, `POST`, `DELETE`, `PUT`, `PATCH`, `OPTIONS`, and `HEAD`.
|
|
|
|
For example, create the file `src/api/store/hello-world/route.ts` with the following content:
|
|
|
|
```ts title="src/api/store/hello-world/route.ts"
|
|
import type {
|
|
MedusaRequest,
|
|
MedusaResponse,
|
|
} from "@medusajs/medusa"
|
|
|
|
export const GET = (
|
|
req: MedusaRequest,
|
|
res: MedusaResponse
|
|
) => {
|
|
res.json({
|
|
message: "[GET] Hello world!",
|
|
})
|
|
}
|
|
|
|
export const POST = (
|
|
req: MedusaRequest,
|
|
res: MedusaResponse
|
|
) => {
|
|
res.json({
|
|
message: "[POST] Hello world!",
|
|
})
|
|
}
|
|
```
|
|
|
|
This adds two API Routes:
|
|
|
|
- A `GET` route at `http://localhost:9000/store/hello-world`.
|
|
- A `POST` route at `http://localhost:9000/store/hello-world`. |