Get Started
The body is passed in via the third argument's body property.
It's easy to include a request body:
await "POST", "/users", ;
To upload a file, assuming you're using UploadFileBody or UploadFilesBody, you can do this:
await "POST", "/upload", ;
Just build the FormData instance and pass it in:
;
"key", "value";
await "POST", "/form-data", ;