insert function
Invoked when an item is insert into a table.
Syntax
function insert(item, user, request) { }
Parameters
item
Type: objectThe rowset to be inserted into the table.
user
Type: objectThe user object that represents an authenticated user when authentication is required, otherwise undefined.
request
Type: objectThe request object that represents the request for the operation.
Return Value
Type: undefined
When the insert operation succeeds, a response with 201 HTTP status code is returned with the state of the inserted item in the body. This item includes the ID of the item generated during the insert operation.
Remarks
You can control data that is inserted by modifying the state of the item object before the execute method is called.
You can override the default success and error behaviors. For more information, see Mobile Services JavaScript (Node.js) backend library
See Also
Server script example how tos
How to: Authenticate with Windows Live