diff --git a/src/content/docs/processors/http/response/create.mdx b/src/content/docs/processors/http/response/create.mdx index 02d4f07..d1b2bca 100644 --- a/src/content/docs/processors/http/response/create.mdx +++ b/src/content/docs/processors/http/response/create.mdx @@ -10,7 +10,7 @@ This processor will create a new HTTP response with the specified status code an - **type**: `http.response.create` - **params**: - **status**: the HTTP status code to set for the response (e.g. `200`, `404`, etc.) - - **body**: the body template to set for the response + - **bodyTemplate**: the body template to set for the response ### Example @@ -20,5 +20,5 @@ This would create an HTTP response with a status code of `200` and a body of `OK - type: http.response.create params: status: 200 - body: "OK" + bodyTemplate: "OK" ```