Skip to main content

Creating Basic APIs

You can use the following methodology to create your own Basic API's with any backends you would like by implementing abstract class MalleableApiBase.

The following method need to be implemented:

protected Task ProcessPostAsync<T>(HttpContext context, T content)
{
// implement your logic for creating the item on the backend
throw new NotImplementedException();
}