ionBIZ is a Project Management solution from ionProjects, part of Visma. This article provides an overview to get started with the ionBIZ connector in Peliqan. Please contact support if you have any additional questions or remarks.
First create an "Application" in ionBiz:
Adding an Application in ionBIZ:
Enabling the r_Odata scope under ScopeOdata and for each desired table:
Here’s an example on how to add a Relation (e.g. a customer) to ionBIZ using a low-code Python script in Peliqan:
ionbiz_api = pq.connect('IonBiz')
relation = {
'Name': "My new relation name",
}
result = ionbiz_api.add('relation', relation)
st.json(result)
Here’s an example on how to update a Relation: