Sample messages
Cost Account
- XML
- JSON
<?xml version="1.0" encoding="UTF-8"?>
<costAccount xmlns="http://api.proactis.com/accounting">
<description xmlns="http://api.proactis.com/accounting">Installations</description>
<online xmlns="http://api.proactis.com/accounting">true</online>
<erpId xmlns="http://api.proactis.com/accounting">432990</erpId>
<type xmlns="http://api.proactis.com/accounting">Generic</type>
<costCenters>
<costCenter>CC001</costCenter>
</costCenters>
<id xmlns="http://api.proactis.com/accounting">432990</id>
</costAccount>
{
"description": "Installations",
"online": true,
"erpId": "432990",
"type": "Generic",
"costCenters": [
"CC001"
],
"id": "432990"
}
Cost Center
- XML
- JSON
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<costCenter xmlns="http://api.proactis.com/accounting">
<id>CC001</id>
<name>Hardware/Software</name>
<description>Hardware/Software</description>
<online>true</online>
<type>IT</type>
<procurementWorkFlowId>PWF01</procurementWorkFlowId>
<invoicingWorkFlowId>IWF01</invoicingWorkFlowId>
<departments>
<department>A-2000</department>
</departments>
<lastModified>2022-06-24T18:07:02+02:00</lastModified>
</costCenter>
{
"name": "Hardware/Software",
"description": "Hardware/Software",
"online": true,
"erpId": "CC001",
"type": "IT",
"procurementWorkFlowId": "PWF01",
"invoicingWorkFlowId": "IWF01",
"departments": [
"A-2000"
],
"id": "CC001"
}
Cost Dimension
- XML
- JSON
<?xml version="1.0" encoding="UTF-8"?>
<costDimensionValue xmlns="http://api.proactis.com/accounting">
<description xmlns="http://api.proactis.com/accounting">Amsterdam</description>
<value xmlns="http://api.proactis.com/accounting">001</value>
<online xmlns="http://api.proactis.com/accounting">true</online>
<type xmlns="http://api.proactis.com/accounting">Generic</type>
<parents>
<parent>Location</parent>
</parents>
<id xmlns="http://api.proactis.com/accounting">001</id>
</costDimensionValue>
{
"description": "Amsterdam",
"value": "001",
"online": true,
"type": "Generic",
"parents": [
"Location"
],
"id": "001"
}
Department
- XML
- JSON
<?xml version="1.0" encoding="UTF-8"?>
<department xmlns="http://api.proactis.com/accounting">
<name xmlns="http://api.proactis.com/accounting">IT</name>
<description xmlns="http://api.proactis.com/accounting">IT</description>
<online xmlns="http://api.proactis.com/accounting">true</online>
<parentId xmlns="http://api.proactis.com/accounting">A-2000</parentId>
<id xmlns="http://api.proactis.com/accounting">A-2100</id>
</department>
{
"name": "IT",
"description": "IT",
"online": true,
"parentId": "A-2000",
"id": "A-2100"
}
Department Address
- XML
- JSON
<?xml version="1.0" encoding="UTF-8"?>
<address xmlns="http://api.proactis.com/accounting">
<street>Riverview Court</street>
<street2>Castle Gate</street2>
<zipCode>LS22 6LE</zipCode>
<state></state>
<city>Wetherby, Leeds</city>
<countryCode>UK</countryCode>
<country>UK</country>
<companyName>Proactis</companyName>
<title></title>
<firstName></firstName>
<lastName></lastName>
<email></email>
<emailRemark></emailRemark>
<gln></gln>
<vatNumber></vatNumber>
<shipTo>true</shipTo>
<billTo>true</billTo>
<name>Default Address</name>
<default>true</default>
</address>
{
"street": "Riverview Court",
"street2": "Castle Gate",
"zipCode": "LS22 6LE",
"state": "",
"city": "Wetherby, Leeds",
"countryCode": "UK",
"country": "UK",
"companyName": "Proactis",
"title": "",
"firstName": "",
"lastName": "",
"email": "",
"emailRemark": "",
"gln": "",
"vatNumber": "",
"shipTo": true,
"billTo": true,
"name": "Default Address",
"default": true
}