I'm trying to send some data to a REST API. The documentation of the API tells me that I have to use PATCH, and provide the data as JSON. The API also requires oAuth 2.0 to make the call, so I fetch an access token first and append that to the api url call.I'm trying to send some data to a REST API. The