http://www.windowsazure.com/en-us/documentation/articles/web-sites-create-web-jobs
https://github.com/projectkudu/kudu/wiki/Web-jobs
http://www.hanselman.com/blog/IntroducingWindowsAzureWebJobs.aspx
Assuming you have the following object:
public class Person {
public string Name { get; set; }
public string Surname { get; set; }
public int Age { get; set; }
}
and got a PATCH request as below: