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).
REST
GET
CRUD
Retrieve
For New records, use a POST, and for updates, use a PUT.
POST
PUT