Dart - api.delete()
This is reference documentation for the Nitric Dart SDK. To learn about APIs in Nitric start with the API docs.
Register an API route and set a specific HTTP DELETE handler on that route.
This method is a convenient short version of api().route().delete()
import 'package:nitric_sdk/nitric.dart';// Create an API named 'public'final api = Nitric.api("public");api.delete("/customers/:customerId", (ctx) async {// Extract the path parameterfinal id = ctx.req.pathParams["customerId"]!;// Construct response for the DELETE: /customers request...final responseBody = {};ctx.res.json(responseBody);return ctx;});
Parameters
- Name
match- Required
- Required
- Type
- String
- Description
The path matcher to use for the route. Matchers accept path parameters in the form of a colon prefixed string. The string provided will be used as that path parameter's name when calling handlers.
- Name
handler- Required
- Required
- Type
- HttpHandler
- Description
The middleware service to use as the handler for HTTP requests.
- Name
security- Optional
- Optional
- Type
- List<OidcOptions>
- Description
Security rules to apply with scopes to the entire API.
- Name
middlewares- Optional
- Optional
- Type
- List<HttpHandler>
- Description
The list of middleware that will run before the handler is called. To call the next middleware in the chain use
ctx.next(), to finish early returnctxby itself. The ordering of middleware goes: API -> Route -> Method.
Examples
Register a handler for DELETE requests
import 'package:nitric_sdk/nitric.dart';// Create an API named 'public'final api = Nitric.api("public");api.delete("/customers/:customerId", (ctx) async {// Extract the path parameterfinal id = ctx.req.pathParams["customerId"]!;// Construct response for the DELETE: /customers request...final responseBody = {};ctx.res.json(responseBody);return ctx;});
Chain services as a single method handler
When multiple services are provided they will be called as a chain. If one succeeds, it will move on to the next. This allows middleware to be composed into more complex handlers. You can call the next middleware in the chain using ctx.next(). If a middleware in the chain does not call .next and instead returns the base context, the call chain will end.
import 'package:nitric_sdk/nitric.dart';Future<HttpContext> validate(HttpContext ctx) async {if (!ctx.req.headers.containsKey("Content-Type")) {ctx.res.status = 400;ctx.res.body = "header Content-Type is required";// End the middleware chain by not calling `ctx.next()`.return ctx;}return ctx.next();}Future<HttpContext> deleteCustomer(HttpContext ctx) async {// handle the DELETE request...return ctx.next();}// The validate middleware will run before the deleteCustomer handlerNitric.api("public").delete("/customers", deleteCustomer, middlewares: [validate]);
Access the request body
The DELETE request body is accessible from the ctx.req object.
import 'package:nitric_sdk/nitric.dart';// Create an API named 'public'final api = Nitric.api("public");api.delete("/customers/:customerId", (ctx) async {// Extract the path parameterfinal id = ctx.req.pathParams["customerId"]!;// Extract the request bodyfinal body = ctx.req.json();// Construct response for the DELETE: /customers request...final responseBody = {};ctx.res.json(responseBody);return ctx;});
Have feedback on this page?
Open GitHub Issue