A Python Client/ORM library for integration to Visma eAccounting, Visma eEkonomi
Using the library requires Python 3.6 or higher
pip install visma
After installation you will need to set up access to the Visma eAccounting API
As of now it is not possible to get access by yourself so you will need to contact Visma at eaccountingapi@visma.com.
See full documentation for more info on how to get access and how to set it up.
The api is inspired from the Django ORM. The Visma API is well documented and supports filtering according to Odata which makes the operations very similar to database access. We want to be able interact with all objects as normal python objects
customers = Customer.objects.all()
invoice = CustomerInvoiceDraft.objects.get('e629baaf-642b-4079-9180-1b8463d24dc2')
invoice.your_reference = 'Mr finance guy'
invoice.save()
invoice2 = CustomerInvoiceDraft.objects.get('ff9839do-642b-4079-9180-1b8463d24dc2')
invoice2.delete()
# or
CustomerInvoiceDraft.objects.delete('ff9839do-642b-4079-9180-1b8463d24dc2')
The library is developed by Palmlund Wahlgren Innovative Technology AB, a certified Visma Partner.
We offer software development and integration services to Visma eAccounting (eEkonomi) and can develop your integration or offer support to your team on this library.
Check us out at pwit.se or contact us on info@pwit.se .
Full documentation can be found at https://visma.readthedocs.io/ .
https://eaccountingapi.vismaonline.com/swagger/ui/index
- Visma eAccounting client
- https://eaccounting-sandbox.test.vismaonline.com
- Visma eAccounting API
- https://eaccountingapi-sandbox.test.vismaonline.com/v2
- Visma IdentityServer Authorization
- https://identity-sandbox.test.vismaonline.com/connect/authorize
- Visma IdentityServer Token
- https://identity-sandbox.test.vismaonline.com/connect/token
- Visma eAccounting client
- https://eaccounting.vismaonline.com
- Visma eAccounting API
- https://eaccountingapi.vismaonline.com/v2
- Visma IdentityServer Authorization
- https://identity.vismaonline.com/connect/authorize
- Visma IdentityServer Token
- https://identity.vismaonline.com/connect/token