We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666dcae commit dadf946Copy full SHA for dadf946
1 file changed
guides/json_and_apis.md
@@ -272,6 +272,7 @@ $ curl -iX POST http://localhost:4000/api?name=name3
272
```
273
274
They would return, respectively, `Hello name1!` (Path parameter), `Hello name2!` (Request body) and `Hello name3!` (Query parameter).
275
+You can access those parameters individually if desired via `conn.path_params`, `conn.body_params`, and `conn.query_params` respectively.
276
277
## Action fallback
278
0 commit comments