Requires a valid
session key obtained from calling
auth.getSessionKey, passed as parameter "s" (HTTP-RPC) or "sessionKey" (SOAP) to authenticate your call.
This method requires no request body.
SOAP Example
CellSetInputRequest req = new CellSetInputRequest();
req.sessionKey = sessionKey;
req.worksheet = "/user/demouser/Book1/Sheet1";
req.range = "A1:B1";
req.input = "Hello World";
service.doCellSetInput(req);