CURLMBS and PATCH

Is there a way to send a HTTP “PATCH” request using CURL(S)MBS plugin?

curl --request PATCH "http://......................" ^
    --header "Content-Type: application/json" ^
    --header "Accept: application/json" ^
    --header "Authorization: ..............." ^
    --data "{\"op\":\"add\",\"path\":\"/user\",\"value\":\"%~1\"}"  

Use

c.OptionCustomRequest = "PATCH"

Thank you!