IT:AD:HTTP/Max GET Length

Summary

The reason this is not a great question is that following REST-ful design practices, a GET is a CRUD/Retrieve statement. It shouldn't be long (just an ID, or Filter/Paging).

For New records, use a POST, and for updates, use a PUT.

Resources