To perform CRUD operations using OData below listed functions are available
Get Uniconta Entity by Id
public async Task<HttpResponseMessage> Get(string entityName, int id)
Get Uniconta Entity Name and Property
public async Task<HttpResponseMessage> Get(string entityName, [FromUri]UnicontaProperty property)
Url to Get Uniconta Entity: https://odata.uniconta.com/api/Entities/GLDailyJournalClient
Insert Uniconta Entity
public async Task<HttpResponseMessage> Insert([FromUri]string entityName, [FromBody]object value)
Url to Insert Uniconta Entity: https://odata.uniconta.com/api/Entities/Insert/GLDailyJournalClient
Insert Uniconta Entity List
public async Task<HttpResponseMessage> InsertList([FromUri]string entityName, [FromBody]object value)
Url to Insert Uniconta Entity List: https://odata.uniconta.com/api/Entities/InsertList/GLDailyJournalClient
Delete Uniconta Entity
public async Task<HttpResponseMessage> Delete(string entityName, [FromBody]object value)
Url to Delete Uniconta Entity: https://odata.uniconta.com/api/Entities/Delete/GLDailyJournalClient
Delete Uniconta Entity List
public async Task<HttpResponseMessage> DeleteList(string entityName, [FromBody]object value)
Url to Delete Uniconta Entity List: https://odata.uniconta.com/api/Entities/DeleteList/GLDailyJournalClient
Update Uniconta Entity
public async Task<HttpResponseMessage> Update([FromUri]string entityName, [FromBody]object value)
Url to Update Uniconta Entity: https://odata.uniconta.com/api/Entities/Update/GLDailyJournalClient
Update Uniconta Entity List
public async Task<HttpResponseMessage> UpdateList([FromUri]string entityName, [FromBody]object value)
Url to Update Uniconta Entity List: https://odata.uniconta.com/api/Entities/UpdateList/GLDailyJournalClient
Read Uniconta Entity
public async Task<HttpResponseMessage> Read([FromUri]string entityName, [FromBody]object value)
Url to Read Uniconta Entity: https://odata.uniconta.com/api/Entities/Read/GLDailyJournalClient
Download Sample OData Client