Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Enumerates the supported HTTP status codes can be returned by Microsoft Azure Mobile Services.
Syntax
Members
This object contains the following members:
Properties
Member |
Code |
---|---|
OK |
200 |
CREATED |
201 |
ACCEPTED |
202 |
NO_CONTENT |
204 |
BAD_REQUEST |
400 |
UNAUTHORIZED |
401 |
FORBIDDEN |
403 |
NOT_FOUND |
404 |
CONFLICT |
409 |
INTERNAL_SERVER_ERROR |
500 |
Remarks
Use the statusCodes object to specify the status code when you call the respond method on the request object.
Example
function insert(item, user, request) {
if (item.userid !== user.userId) {
request.respond(statusCodes.FORBIDDEN,
'You may only insert records with your userid.');
} else {
request.execute();
}
}