REDFISH-cheatsheet: add multipart form data update

Add the command for firmware update using multipart form data.

Change-Id: I7bbace99987b39edfcc14ec5fe10e9f7cbf44d36
Signed-off-by: Jagpal Singh Gill <paligill@gmail.com>
diff --git a/REDFISH-cheatsheet.md b/REDFISH-cheatsheet.md
index 8e46c23..21edf44 100644
--- a/REDFISH-cheatsheet.md
+++ b/REDFISH-cheatsheet.md
@@ -134,6 +134,15 @@
 curl -k -H "X-Auth-Token: $token" -H "Content-Type: application/octet-stream" -X POST -T <image file path> https://${bmc}${uri}
 ```
 
+Firmware update using multi-part form data: Note the `<apply time>` can be
+`OnReset` or `Immediate`.
+
+```
+uri=$(curl -k -H "X-Auth-Token: $token" https://${bmc}/redfish/v1/UpdateService | jq -r ' .MultipartHttpPushUri')
+
+curl -k -H "X-Auth-Token: $token" -H "Content-Type:multipart/form-data" -X POST -F UpdateParameters="{\"Targets\":[\"/redfish/v1/Managers/bmc\"],\"@Redfish.OperationApplyTime\":<apply time>};type=application/json" -F "UpdateFile=@<image file path>;type=application/octet-stream" https://${bmc}${uri}
+```
+
 TFTP Firmware update using TransferProtocol: Note: The `<image file path>`
 contains the address of the TFTP service:
 `xx.xx.xx.xx/obmc-phosphor-xxxxx-xxxxxxxxx.static.mtd.tar`