You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Specifies the disposition of the field.
254
+
schema:
255
+
type: string
256
+
default: 'form-data; name="name"'
257
+
allowReserved: false
234
258
```
235
259
236
-
In this example, the server expects a form data request with a photo of the drink. The `encoding` field provides additional information about the photo, such as the content type, headers, and whether reserved characters are allowed.
260
+
In this example, the server expects a form data request with a photo of the drink, the recipe for the drink, and the name of the drink. The `encoding` field provides additional information about each part, such as the content type, headers, and whether reserved characters are allowed.
237
261
238
-
The curl command below sends a request to the server with a photo file in the body:
262
+
The curl command below sends a request to the server with a photo file, a recipe file, and the name of the drink in the body:
0 commit comments