Sample messages
Contract Import
- XML
- JSON
<?xml version="1.0" encoding="UTF-8"?>
<contract xmlns="http://api.proactis.com/contracts">
<classification>Regular service contract</classification>
<template>Regular template</template>
<type>Hiring contract</type>
<name>Contract name</name>
<reference>K-9988</reference>
<description>Agreement for the delivery of office supplies</description>
<keywords>Contract, License, B2B</keywords>
<creator>MScott</creator>
<responsible>DSchrute</responsible>
<online>true</online>
<startDate>2030-01-14</startDate>
<endDate>2031-02-15</endDate>
<indefinitePeriod>false</indefinitePeriod>
<deliveryTerms>The delivery terms</deliveryTerms>
<paymentTerms>The payment terms</paymentTerms>
<spendingPool>2000</spendingPool>
<commodityCode>2001</commodityCode>
<relatedContract xmlns="http://api.proactis.com/contracts">
<number>98724</number>
<version>1</version>
</relatedContract>
<automaticExtension xmlns="http://api.proactis.com/contracts">
<period>1</period>
<type>months</type>
</automaticExtension>
<notice xmlns="http://api.proactis.com/contracts">
<period>10</period>
<type>days</type>
<information>information</information>
</notice>
<suppliers>
<supplier xmlns="http://api.proactis.com/contracts">
<supplierNumber>097235</supplierNumber>
<displayContract>true</displayContract>
</supplier>
</suppliers>
<comments>
<comment xmlns="http://api.proactis.com/contracts">
<note>note</note>
<visibleToSupplier>false</visibleToSupplier>
<visibleToFrontOffice>true</visibleToFrontOffice>
</comment>
</comments>
<additionalFields>
<additionalField xmlns="http://api.proactis.com/contracts">
<name>fieldName</name>
<description>description</description>
<online>true</online>
</additionalField>
</additionalFields>
<financialInformation>
<contractValue xmlns="http://api.proactis.com/contracts">
<startDate>2030-01-14</startDate>
<endDate>2031-02-15</endDate>
<contractValue>2000</contractValue>
</contractValue>
</financialInformation>
</contract>
{
"classification": "Regular service contract",
"template": "Regular template",
"type": "Hiring contract",
"name": "Contract name",
"reference": "K-9988",
"description": "Agreement for the delivery of office supplies",
"keywords": "Contract, License, B2B",
"creator": "MScott",
"responsible": "DSchrute",
"online": true,
"startDate": "2030-01-14",
"endDate": "2031-02-15",
"indefinitePeriod": false,
"deliveryTerms": "The delivery terms",
"paymentTerms": "The payment terms",
"spendingPool": 2000,
"commodityCode": 2001,
"relatedContract": {
"number": 98724,
"version": 1
},
"automaticExtension": {
"period": 1,
"type": "months"
},
"notice": {
"period": 10,
"type": "days",
"information": "information"
},
"suppliers": [
{
"supplierNumber": "097235",
"displayContract": true
}
],
"comments": [
{
"note": "note",
"visibleToSupplier": false,
"visibleToFrontOffice": true
}
],
"additionalFields": [
{
"name": "fieldName",
"description": "description",
"online": true
}
],
"financialInformation": [
{
"startDate": "2030-01-14",
"endDate": "2031-02-15",
"contractValue": 2000
}
]
}