A common tool for testing REST services is the tool Postman. This article will cover how to access and use the Uniconta ODATA API using Postman. Because it is an ODATA API, no API key is required. Uniconta login credentials are the only thing you need to call the API. Endpoints You can find endpoints […]
Developers Unipedia
- API
- API
- User defined fields
- User defined tables
- Saving a Session
- Posting an Invoice
- Post Invoice and get PDF
- Localization
- Attach physical voucher to entities
- Server-Login User
- How to find C# Property from Uniconta Label
- Minimize network traffic and optimize speed
CRUD operations in OData
November 27th, 2019 by UnicontaTo 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 […]