How do you send a url query parameter as an integer or long in a GET request

Note, this is specifically regarding a GET request and not POST, so please don’t answer with WWWForm!

I’m trying to send a long or int in a URL query to a REST endpoint that accepts a number for that parameter and not the usual url query string. How does one do this using UnityWebRequest GET?

number for that parameter

I think you mean you want to put a number into the body of a request.

Unity - Manual: Creating UploadHandlers with the method set to Get will probably work.