/// <summary>
/// Available at url: /sitecore/api/ssc/example1/andreas/{id}/{action}
/// </summary>
[Sitecore.Services.Core.ServicesController("example1.andreas")]
[ClearSitecoreWebApiConfig]
public class MyController : System.Web.Http.ApiController
{
	[HttpGet]
	public IHttpActionResult MyAction()
	{
		// Implement
	}
}