1. Introduction
The Customer Relationship domain enables you to manage events, opportunities, customers and prospects.
1.3. Tags
-
Campaigns : Campaigns Management
-
Contacts : Contacts
-
Customer Contacts : Customer Contacts
-
Customers : Customers
-
Events : Events API
-
General : General
-
Opportunities : Opportunities
-
Other Third-party : Other Third-party
-
Supplier Contacts : Supplier Contacts
1.4. Schemas Types
Data types of a schema can be :
-
string (date-time) : the date-time notation as defined by RFC 3339 (
yyyy-MM-dd’T’HH:mm:ss.SSSXXX
). e.g. "2020-11-29T08:10:10+0200" -
number : Any numbers.
-
number (double) : Floating-point numbers with double precision. e.g. 10.8
-
number (float) : Floating-point numbers. e.g. 10.8
-
integer (int64) : Signed 64-bit integers (long type). e.g. 10
-
boolean : Represents two values: true and false. Note that truthy and falsy values such as "true", "", 0 or null are not considered boolean values.
2. Resources
2.1. Campaigns
2.1.1. Delete a campaign
DELETE |
/campaigns/{campaign_id} |
Description
Delete a campaign
DMF required:
-
DMF A21303: Api Crm / Campaigns / Delete
-
DMF 010303: Prospecting / Campaigns / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
campaign_id |
The id of the campaign |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Campaign successfully deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.1.2. Get the campaign matching the specified ID.
GET |
/campaigns/{campaign_id} |
Description
Get the campaign matching the specified ID.
DMF required:
-
DMF A21306: Api Crm / Campaigns / Info
-
DMF 010305: Prospecting / Campaigns / Show History
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
campaign_id |
The id of the campaign |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Campaign successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.1.3. Read a campaign
POST |
/campaigns/{campaign_id}/read |
Description
Get a campaign, with additional information of your choice. You can add this information with Read Options. These are listed in the link below.
DMF required:
-
DMF A21306: Api Crm / Campaigns / Info
-
DMF 010305: Prospecting / Campaigns / Show History
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
campaign_id |
The id of the campaign |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned campaign CampaignReadOption |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Campaign successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "MANAGER", "MANAGER" ]
}
2.1.4. Search for campaigns (with search criteria)
POST |
/campaigns/search |
Description
Get the list of campaigns matching the search criteria.
DMF required:
-
DMF A21304: Api Crm / Campaigns / Search
-
DMF 010304: Prospecting / Campaigns / Search
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (id, code, etc…) CampaignCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Campaign]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Campaigns successfully loaded |
List[Campaign] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"targetId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"description" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"managerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "MANAGER", "MANAGER" ]
},
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"changeTracking" : {
"updatedTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"updatedById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"typeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"startDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.2. Contacts
2.2.1. Get the avatar of the contact
GET |
/contacts/{contact_id}/avatar.png |
Description
Get the avatar of the contact
DMF required:
-
DMF A21006: Api Crm / Contacts / Contact Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
s |
Size in pixels of the image |
- |
null |
Content Type
-
image/*
Responses
Code | Message | Datatype |
---|---|---|
200 |
Image of the Contact having this id |
|
204 |
No image for this contact |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.2.2. Upload the avatar of the specified contact.
POST |
/contacts/{contact_id}/avatar/upload |
Description
Upload the avatar of the specified contact.
DMF required:
-
DMF A21010: Api Crm / Contacts / Contact Avatar
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Form Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
document |
The file to upload. [file] |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
s |
Size in pixels of the image |
- |
null |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
The avatar has successfully been uploaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3. Customer Contacts
2.3.1. Create a contact
PUT |
/customers/{customer_id}/contacts/ |
Description
Create a contact using the list of parameters below.
DMF required:
-
DMF A21001: Api Crm / Contacts / Add Contact
-
DMF 160402: Tools / Contacts / New
-
DMF 181001: Training / Portal / New Trainee
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact |
The contact to create Contact |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
201 |
Contact successfully created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}
2.3.2. Link a contact to an existing third party
PUT |
/contacts/{contact_id}/third-parties |
Description
Link a contact to an existing third party and third party site using the parameters below.
Note : This api only allows you to link a customer and his site to the contact. It is not yet possible to link a supplier and its site.
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
linkedThirdParty |
Parameters needed to link a contact ThirdPartySiteInformation ThirdPartySiteInformation |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
201 |
The link has been successfully created |
|
404 |
Not Found - There is no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"siteRelatedInformation" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
},
"customerRelatedInformation" : {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}
}
2.3.3. Declare an existing contact has returned to an existing third party using the parameters below.
POST |
/contacts/{contact_id}/third-parties/{third_party_type}/{third_party_id}/mark-as-back |
Description
Note : This api only allows you to link a customer and his site to the contact. It is not yet possible to link a supplier and its site.
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
200 |
The contact has been successfully marked as back |
<<>> |
404 |
Not Found - There is no third party or no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.4. Declare a contact as having left a third party using the parameters below.
POST |
/contacts/{contact_id}/third-parties/{third_party_type}/{third_party_id}/mark-as-gone |
Description
Note : This api only allows you to link a customer and his site to the contact. It is not yet possible to link a supplier and its site.
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
200 |
The contact has been successfully marked as gone |
<<>> |
404 |
Not Found - There is no third party or no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.5. Delete a contact
DELETE |
/customers/{customer_id}/contacts/{contact_id} |
Description
Delete a contact
DMF required:
-
DMF A21003: Api Crm / Contacts / Delete Contact
-
DMF 160404: Tools / Contacts / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Successful delete |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.6. Delete the avatar of a contact
DELETE |
/contacts/{contact_id}/avatar |
Description
Delete the avatar of the specified contact.
DMF required:
-
DMF A21010: Api Crm / Contacts / Contact Avatar
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The avatar has successfully been deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.7. Delete a link between an existing third party site and a contact
DELETE |
/contacts/{contact_id}/third-parties/{third_party_type}/sites/{site_id} |
Description
Delete a link between an existing third party site and a contact using the parameters below.
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
site_id |
The id of the site |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The link has been successfully deleted |
<<>> |
400 |
Deleting the last site of the last linked third party (customer or supplier) is not possible. |
<<>> |
404 |
Not Found - There is no site or no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.8. Get the avatar of the customer contact
GET |
/customers/{customer_id}/contacts/{contact_id}/avatar.png |
Deprecated
Tip
|
Use GET /contacts/{contact_id}/avatar.png instead View |
Description
Get the avatar of the customer contact
DMF required:
-
USERAK: A registered user.
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
s |
Size in pixels of the image |
- |
null |
Content Type
-
image/*
Responses
Code | Message | Datatype |
---|---|---|
200 |
Image of the Contact having this id |
|
204 |
No image for this contact |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.9. Get a site and customer related information of a contact
GET |
/contacts/{contact_id}/sites/{site_id}/customers/{customer_id} |
Description
Get a site and customer related information of a contact
DMF required:
-
DMF A21108: Api Crm / Sites / Contact Client Site Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
-
DMF 030306: Third-parties / Customer Sites / Show History
-
DMF 030406: Third-parties / Supplier Sites / Show History
-
DMF 010108: Prospecting / Prospects / Show History
-
DMF 020108: Sales / Customer / Show History
-
DMF 250120: Project / Schedule View / Customer Details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
|
site_id |
The id of the site |
X |
null |
|
customer_id |
The id of the customer |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The informations about third party and site successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.10. Get a site related information of a contact
GET |
/contacts/{contact_id}/sites/{site_id} |
Description
Get a site related information of a contact
DMF required:
-
DMF A21107: Api Crm / Sites / Contact Site Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
-
DMF 030306: Third-parties / Customer Sites / Show History
-
DMF 030406: Third-parties / Supplier Sites / Show History
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
|
site_id |
The id of the site |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The site related information has been successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.11. Get a contact related to a customer
GET |
/customers/{customer_id}/contacts/{contact_id} |
Description
Get a contact related to a customer
DMF required:
-
DMF A21006: Api Crm / Contacts / Contact Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
A contact of the customer |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.12. Declare an existing contact as missing using the parameters below
POST |
/contacts/{contact_id}/mark-as-missing |
Description
Declare an existing contact as missing using the parameters below
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The contact has been successfully marked as missing |
<<>> |
404 |
Not Found - There is no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.13. Declare an existing contact as returned using the parameters below
POST |
/contacts/{contact_id}/mark-as-returned |
Description
Declare an existing contact as returned using the parameters below
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The contact has been successfully marked as returned |
<<>> |
404 |
Not Found - There is no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.14. Move a contact from a third party site to another a third party site
POST |
/contacts/{contact_id}/sites/move |
Description
Move a contact from a third party site to another a third party site
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
SiteMovement |
a Site Movement SiteMovement |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The contact has been successfully moved to another site |
<<>> |
404 |
Not Found - There is no third party or no contact corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"from" : {
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"siteId" : "siteId"
},
"to" : {
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"siteId" : "siteId"
}
}
2.3.15. Patch a contact
PATCH |
/customers/{customer_id}/contacts/{contact_id} |
Description
Patch a contact
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
All patches to applies PatchElement |
- |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Contact successfully patched |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.3.16. Publish a contact
POST |
/contacts/{contact_id}/publish |
Description
Publish a contact using the template given as parameter
DMF required:
-
DMF A21011: Api Crm / Contacts / Publish
-
DMF 160408: Tools / Contacts / Print
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
publish_arguments |
The arguments for publishing contact PublishArguments |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Published document |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"template" : {
"id" : "5000123",
"code" : "MODELE_EDITION_001",
"name" : "Edition model for my documents",
"type" : {
"code" : "TEMP01",
"name" : "Template one",
"modelId" : "5000123",
"modelDescription" : "Lorem Ipsum"
},
"publishType" : "{}",
"path" : "C://MyDoc/Template/modele_edition_001",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"extensions" : ".pdf, .docx",
"defaultTemplate" : true,
"interactive" : true,
"order" : 1
},
"extension" : ".pdf",
"parameters" : [ {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
}, {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
} ],
"saveDocument" : true
}
2.3.17. Read the contact related to a customer
POST |
/customers/{customer_id}/contacts/{contact_id}/read |
Description
Read the contact related to a customer
DMF required:
-
DMF A21006: Api Crm / Contacts / Contact Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned contact ContactReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
A contact of the customer |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.3.18. Read the contacts related to a customer
POST |
/customers/{customer_id}/contacts/read |
Description
Read the contacts related to a customer
DMF required:
-
DMF A21006: Api Crm / Contacts / Contact Info
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160402: Tools / Contacts / New
-
DMF 160403: Tools / Contacts / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned contact ContactReadOption |
- |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
onlyEmployees |
Filter on contacts being employees or not |
- |
null |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The contacts of the customer |
List[Contact] |
400 |
Request failed - The parameters were valid but the request failed |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.3.19. Search contact
POST |
/contacts/search |
Description
Search contact
DMF required:
-
DMF A21004: Api Crm / Contacts / Search
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 141301: Helpdesk / Issues / New
-
DMF 142601: Helpdesk / Simplified Issue / New
-
DMF 142626: Helpdesk / Simplified Issue / New Issue From Template
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160405: Tools / Contacts / Search
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria ContactCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful customers search |
List[Contact] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"noLongerWorkForSupplierCompany" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"readOption" : {
"options" : [ "ADDRESS", "ADDRESS" ]
},
"customerType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"modificationTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"function" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"disappeared" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"modificationById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"keyword" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerValidity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"supplierEntityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierDivisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteHelpdeskContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"recipientOfQuotation" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"firstName" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteSalesContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"mobilePhone" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"phone" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteFinanceContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerDivisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"lastTracking" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"siteHelpdeskVIPContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerEntityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"noLongerWorkForCustomerCompany" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierTitle" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteDecisionMaker" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteEmail" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSubcategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteSalesContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteHelpdeskMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSalesmanId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierPosition" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"email" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteDecisionMaker" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierName" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteEmail" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteTrainingContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerSubcategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"employeeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerIncludeClosed" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteHelpdeskBlacklisted" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteFinancialContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"service" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteIntern" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierSiteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.3.20. Search for search field behavior for the Contacts
GET |
/contacts/search-fields-information |
Deprecated
Tip
|
This API will soon be removed as it is no longer functional. No data will be returned when using it. |
Description
Get the list of search field behavior for Contacts
DMF required:
-
DMF A21004: Api Crm / Contacts / Search
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 141301: Helpdesk / Issues / New
-
DMF 142601: Helpdesk / Simplified Issue / New
-
DMF 142626: Helpdesk / Simplified Issue / New Issue From Template
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160405: Tools / Contacts / Search
Return Type
array[SearchControlBehavior]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Search field behavior results |
List[SearchControlBehavior] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.3.21. Update a contact
POST |
/customers/{customer_id}/contacts/{contact_id} |
Description
Update the contact matching the specified ID and using the list of parameters below.
DMF required:
-
DMF A21002: Api Crm / Contacts / Update Contact
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
-
DMF 160419: Tools / Contacts / Show Personal Contact Details Tab
-
DMF 160420: Tools / Contacts / Personal Contact Details
-
DMF 160417: Tools / Contacts / Mark As 'to Be Anonymized'
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
contact |
The contact to update Contact |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Contact successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}
2.4. Customers
2.4.1. Check if the client is blocked
POST |
/customers/{customer_id}/check-blocking |
Description
Check if the client has blocking information.
DMF required:
-
DMF A20106: Api Crm / Customer / Info
-
DMF 010108: Prospecting / Prospects / Show History
-
DMF 020108: Sales / Customer / Show History
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 250120: Project / Schedule View / Customer Details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
check_blocking_param |
Information needed to check customer blocking BlockingParamHolder |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer blocking information |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"amount" : 0.8008281904610115,
"objectId" : "objectId"
}
2.4.2. Create a customer
PUT |
/customers |
Description
Create a customer
DMF required:
-
DMF A20101: Api Crm / Customer / Insert
-
DMF 010101: Prospecting / Prospects / New
-
DMF 020101: Sales / Customer / New
-
DMF 191420: Web Portal / Opportunities / Access To The Quick Creation
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer |
A Customer to be created Customer |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
201 |
A customer successfully inserted |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
}
2.4.3. Create a customer site
PUT |
/customers/{customer_id}/sites |
Description
Create a customer site
DMF required:
-
DMF A21101: Api Crm / Sites / Add Site
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
site |
A Customer Site to be created Site |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
A customer Site successfully inserted |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}
2.4.4. Create a customer linked salesman
PUT |
/customers/{customer_id}/linked-salesmen |
Description
Create a customer linked salesman
DMF required:
-
DMF A20111: Api Crm / Customer / Insert Customer’s Linked Salesman
-
DMF 020132: Sales / Customer / Modify Salesmen Tab
And
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
linkedSalesMan |
A customer linked salesman to be created LinkedSalesmen |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
201 |
Customer's linked salesman has been created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}
2.4.5. Create a people link between two third parties
PUT |
/people/{third_party_type}/{third_party_id}/people-links |
Description
Create a people link between two third parties
DMF required:
-
DMF A20121: Api Crm / Customer / Insert People Link
-
DMF 010134: Prospecting / Prospects / Modify Affiliation Links Tab
-
DMF 010136: Prospecting / Prospects / Modify Management Links Tab
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
peopleLink |
A people link to be created PeopleLink |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Third Party's people link has successfully created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"linkType" : "{}",
"linkSource" : {
"id" : "5000123",
"code" : "CODE",
"description" : "Loremp ipsum",
"type" : "{}",
"linkDirection" : "{}",
"static" : true,
"companyCode" : "AKSAS"
},
"linkSourceId" : "5000123",
"sourceThirdParty" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"sourceThirdPartyId" : "5000123",
"sourceThirdPartyType" : "{}",
"linkTarget" : {
"id" : "5000123",
"code" : "CODE",
"description" : "Loremp ipsum",
"type" : "{}",
"linkDirection" : "{}",
"static" : true,
"companyCode" : "AKSAS"
},
"linkTargetId" : "5000123",
"targetThirdParty" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"targetThirdPartyId" : "5000123",
"targetThirdPartyType" : "{}",
"defaultLink" : true
}
2.4.6. Delete a Customer
DELETE |
/customers/{customer_id} |
Description
Delete a Customer
DMF required:
-
DMF A20103: Api Crm / Customer / Delete
-
DMF 010103: Prospecting / Prospects / Delete
-
DMF 020103: Sales / Customer / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Customer successfully deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.7. Delete the avatar of a customer
DELETE |
/customers/{customer_id}/avatar |
Description
Delete the avatar of the specified customer.
DMF required:
-
DMF A20110: Api Crm / Customer / Customer Avatar
-
DMF 010102: Prospecting / Prospects / Modify
-
DMF 020102: Sales / Customer / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The avatar has successfully been deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.8. Delete the site related information of a customer
DELETE |
/customers/{customer_id}/main-site-related-information/{site_related_information_id} |
Description
Delete the site related information of a customer
DMF required:
-
DMF A20107: Api Crm / Customer / Search Contacts
-
DMF 010106: Prospecting / Prospects / Contacts
-
DMF 020106: Sales / Customer / Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_related_information_id |
The id of the site related information |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Site related information successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.9. Delete a Customer Site
DELETE |
/customers/{customer_id}/sites/{site_id} |
Description
Delete a Customer site
DMF required:
-
DMF A21103: Api Crm / Sites / Delete Site
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_id |
The id of the site |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
A Customer Site successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.10. Delete a customer linked salesman
DELETE |
/customers/{customer_id}/linked-salesmen/{employee_id} |
Description
Delete a customer linked salesman
DMF required:
-
DMF A20113: Api Crm / Customer / Delete Customer’s Linked Salesman
-
DMF 020132: Sales / Customer / Modify Salesmen Tab
And
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
employee_id |
The id of an employee |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Customer's linked salesman has been successfully deleted |
<<>> |
404 |
Request failed - The parameters were valid but the request failed |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.11. Delete a people link between two third parties
DELETE |
/people/{third_party_type}/{third_party_id}/people-links/{people_link_id} |
Description
Delete a people link between two third parties
DMF required:
-
DMF A20123: Api Crm / Customer / Delete People Link
-
DMF 010134: Prospecting / Prospects / Modify Affiliation Links Tab
-
DMF 010136: Prospecting / Prospects / Modify Management Links Tab
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
|
people_link_id |
The id of the people link |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The people link has been deleted |
<<>> |
404 |
There is no people link corresponding to this id or there is no third party corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.12. Get all linked salesmen of this customer
GET |
/customers/{customer_id}/linked-salesmen |
Description
Get all linked salesmen of this customer
DMF required:
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Return Type
array[LinkedSalesmen]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All linked salesmen of this customer |
List[LinkedSalesmen] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.13. Get the avatar of the customer
GET |
/customers/{customer_id}/avatar.png |
Description
Get the avatar of the customer
DMF required:
-
USERAK: A registered user.
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
s |
Size in pixels of the image |
- |
null |
Content Type
-
image/*
Responses
Code | Message | Datatype |
---|---|---|
200 |
Image of the Customer having this id |
|
204 |
No image for this customer |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.14. Get All Contacts of this Customer
GET |
/customers/{customer_id}/contacts |
Description
Get All Contacts of this Customer
DMF required:
-
DMF A21005: Api Crm / Contacts / Contact List
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All Contacts of this Customer |
List[Contact] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.15. Get a Customer
GET |
/customers/{customer_id} |
Description
Get a Customer
DMF required:
-
DMF A20106: Api Crm / Customer / Info
-
DMF 010108: Prospecting / Prospects / Show History
-
DMF 020108: Sales / Customer / Show History
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 250120: Project / Schedule View / Customer Details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.16. Get a Customer site
GET |
/customers/{customer_id}/sites/{site_id} |
Description
Get a Customer Site
DMF required:
-
DMF A21106: Api Crm / Sites / Site Info
-
DMF 160403: Tools / Contacts / Modify
-
DMF 1601__: Tools / Events
-
DMF 1604__: Tools / Contacts
-
DMF 1608__: Tools / Resources
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_id |
The id of the site |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer Site successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.17. Get All Sites of this Customer
GET |
/customers/{customer_id}/sites |
Description
Get All Sites f this Customer
DMF required:
-
DMF A21105: Api Crm / Sites / List Sites
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Return Type
array[Site]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All Sites of this Customer |
List[Site] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.18. Get all people links for a third party
GET |
/people/{third_party_type}/{third_party_id}/people-links |
Description
Get all people links for a third party
DMF required:
-
DMF A20126: Api Crm / Customer / Info People Link
-
DMF 010135: Prospecting / Prospects / Show Management Links Tab
-
DMF 020143: Sales / Customer / Show Management Links Tab
-
DMF 020201: Sales / Quotations / New
-
DMF 020202: Sales / Quotations / Modify
-
DMF 030204: Third-parties / Other Third-parties / Search
-
DMF 040104: Purchases / Suppliers / Search
-
DMF 191517: Web Portal / Organizations & Contacts / Show Customer Business Links Tab
-
DMF 191519: Web Portal / Organizations & Contacts / Show Prospect Business Links Tab
-
DMF 191521: Web Portal / Organizations & Contacts / Show Customer Affiliation Links Tab
-
DMF 191523: Web Portal / Organizations & Contacts / Show Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Return Type
array[PeopleLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All people links of this third party |
List[PeopleLink] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.19. Patch a customer
PATCH |
/customers/{customer_id} |
Description
Patch a customer
DMF required:
-
DMF A20102: Api Crm / Customer / Update
-
DMF 010102: Prospecting / Prospects / Modify
-
DMF 020102: Sales / Customer / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
All patches to applies PatchElement |
- |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Customer successfully patched |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.4.20. Patch a customer linked salesman
PATCH |
/customers/{customer_id}/linked-salesmen/{employee_id} |
Description
Patch a customer linked salesman
DMF required:
-
DMF A20112: Api Crm / Customer / Update Customer’s Linked Salesman Custom Fields
-
DMF 020132: Sales / Customer / Modify Salesmen Tab
And
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
employee_id |
The id of an employee |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
All patches to applies PatchElement |
- |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Customer's linked salesman has been successfully patched |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.4.21. Publish customer
POST |
/customers/{customer_id}/publish |
Description
Publish customer
DMF required:
-
DMF 191512: Web Portal / Organizations & Contacts / Customer Record Sheet Report
Or
-
DMF 191513: Web Portal / Organizations & Contacts / Prospect Record Sheet Report
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
publish_arguments |
The arguments for publishing customer PublishArguments |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Published document |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"template" : {
"id" : "5000123",
"code" : "MODELE_EDITION_001",
"name" : "Edition model for my documents",
"type" : {
"code" : "TEMP01",
"name" : "Template one",
"modelId" : "5000123",
"modelDescription" : "Lorem Ipsum"
},
"publishType" : "{}",
"path" : "C://MyDoc/Template/modele_edition_001",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"extensions" : ".pdf, .docx",
"defaultTemplate" : true,
"interactive" : true,
"order" : 1
},
"extension" : ".pdf",
"parameters" : [ {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
}, {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
} ],
"saveDocument" : true
}
2.4.22. Read all linked salesmen of this customer with read options
POST |
/customers/{customer_id}/linked-salesmen/read |
Description
Read all linked salesmen of this customer
DMF required:
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
the read options for returned a customer linked salesmen LinkedSalesmenReadOption |
- |
Return Type
array[LinkedSalesmen]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All linked salesmen of this customer |
List[LinkedSalesmen] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "CUSTOM_DATA", "CUSTOM_DATA" ]
}
2.4.23. Get a Customer with read options
POST |
/customers/{customer_id}/read |
Description
Get a Customer with read options
DMF required:
-
DMF A20106: Api Crm / Customer / Info
-
DMF 010108: Prospecting / Prospects / Show History
-
DMF 020108: Sales / Customer / Show History
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 250120: Project / Schedule View / Customer Details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned a Customer CustomerReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.4.24. Get a Customer Site with read options
POST |
/customers/{customer_id}/sites/{site_id}/read |
Description
Get a Customer site with read options
DMF required:
-
DMF A21106: Api Crm / Sites / Site Info
-
DMF 160403: Tools / Contacts / Modify
-
DMF 1601__: Tools / Events
-
DMF 1604__: Tools / Contacts
-
DMF 1608__: Tools / Resources
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_id |
The id of the site |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned a Customer Site SiteReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
A Customer Site successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "CONTACTS", "CONTACTS" ]
}
2.4.25. Get all people links for a third party with read options
POST |
/people/{third_party_type}/{third_party_id}/people-links/read |
Description
Get all people links for a third party with read options
DMF required:
-
DMF A20126: Api Crm / Customer / Info People Link
-
DMF 010135: Prospecting / Prospects / Show Management Links Tab
-
DMF 020143: Sales / Customer / Show Management Links Tab
-
DMF 020201: Sales / Quotations / New
-
DMF 020202: Sales / Quotations / Modify
-
DMF 030204: Third-parties / Other Third-parties / Search
-
DMF 040104: Purchases / Suppliers / Search
-
DMF 191517: Web Portal / Organizations & Contacts / Show Customer Business Links Tab
-
DMF 191519: Web Portal / Organizations & Contacts / Show Prospect Business Links Tab
-
DMF 191521: Web Portal / Organizations & Contacts / Show Customer Affiliation Links Tab
-
DMF 191523: Web Portal / Organizations & Contacts / Show Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for the returned third Party PeopleLinkReadOption |
- |
Return Type
array[PeopleLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All people links of this third party |
List[PeopleLink] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "LINK_SOURCE", "LINK_SOURCE" ]
}
2.4.26. Replace a customer’s banking information.
POST |
/customers/{customer_id}/banking-informations/replace |
Description
Replace a customer’s banking information.
To add new banking information, set the action field to ADD.
To update existing banking information, set the action field to UPDATE.
To delete banking information, set the action field to REMOVE.
When the type is set to SEPA, only the sepa field must be filled.
When the type is set to INTERNATIONAL_BANK, only the noneSepa field must be filled.
The default value is SEPA. An error is returned if there is any inconsistency.
A customer can have at most one banking information entry of type SEPA.
International bank data (provided in the noneSepa field) is not currently supported. Values in this field will be ignored by this API.
DMF required:
-
DMF A20128: Api Crm / Customer / Replace A Customer Banking Information
-
DMF 020153: Sales / Customer / Bank Details
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
bankingInformationList |
The list of banking information to replace BankingInformation |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Banking information have been successfully updated |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}
2.4.27. Search for customers categories (with search criteria)
POST |
/customers/categories/search |
Description
Get the list of customer categories matching the search criteria.
DMF required:
-
DMF A20108: Api Crm / Customer / Search Customer Categories
-
DMF 0901__: Administrator / Setup
-
DMF 020101: Sales / Customer / New
-
DMF 020102: Sales / Customer / Modify
-
DMF 020104: Sales / Customer / Search
-
DMF 020129: Sales / Customer / Show Marketing Tab
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (Code, name, etc…) CategoryCriteria |
X |
Return Type
array[Category]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customers categories successfully loaded |
List[Category] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"grouping" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.4.28. Search customer Sites
POST |
/customers/sites/search |
Description
Search customer Sites
DMF required:
-
DMF A21104: Api Crm / Sites / Search
-
DMF 010129: Prospecting / Prospects / Show Sites Tab
-
DMF 020137: Sales / Customer / Show Sites Tab
-
DMF 141301: Helpdesk / Issues / New
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 020204: Sales / Quotations / Search
-
DMF 142601: Helpdesk / Simplified Issue / New
-
DMF 142626: Helpdesk / Simplified Issue / New Issue From Template
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria SiteCriteria |
- |
Return Type
array[Site]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer site search results |
List[Site] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"useForOrderAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"useForDeliveryAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"useForBillingAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"useForSupportAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"useForDunningAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"siret" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "CONTACTS", "CONTACTS" ]
}
}
2.4.29. Search customer Sites by Customer
POST |
/customers/{customer_id}/sites/search |
Description
Search customer Sites
DMF required:
-
DMF A21104: Api Crm / Sites / Search
-
DMF 010129: Prospecting / Prospects / Show Sites Tab
-
DMF 020137: Sales / Customer / Show Sites Tab
-
DMF 141301: Helpdesk / Issues / New
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 020204: Sales / Quotations / Search
-
DMF 142601: Helpdesk / Simplified Issue / New
-
DMF 142626: Helpdesk / Simplified Issue / New Issue From Template
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria SiteCriteria |
- |
Return Type
array[Site]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customer site search results |
List[Site] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"useForOrderAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"useForDeliveryAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"useForBillingAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"useForSupportAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"useForDunningAddress" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"siret" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "CONTACTS", "CONTACTS" ]
}
}
2.4.30. Search for customers subcategories (with search criteria)
POST |
/customers/sub-categories/search |
Description
Get the list of customer subcategories matching the search criteria
DMF required:
-
DMF A20108: Api Crm / Customer / Search Customer Categories
-
DMF 0901__: Administrator / Setup
-
DMF 020101: Sales / Customer / New
-
DMF 020102: Sales / Customer / Modify
-
DMF 020104: Sales / Customer / Search
-
DMF 020129: Sales / Customer / Show Marketing Tab
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (Code, name, etc…) SubCategoryCriteria |
X |
Return Type
array[SubCategory]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Customers categories successfully loaded |
List[SubCategory] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"nature" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"grouping" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "CATEGORY", "CATEGORY" ]
}
}
2.4.31. Search customers
POST |
/customers/search |
Description
Search customers
DMF required:
-
DMF A20104: Api Crm / Customer / Search
-
DMF 010104: Prospecting / Prospects / Search
-
DMF 020104: Sales / Customer / Search
-
DMF 0202__: Sales / Quotations
-
DMF 190502: Web Portal / Expense Reports / Modify
-
DMF 1915__: Web Portal / Organizations & Contacts
-
DMF 1920__: Web Portal / Services
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria CustomerCriteria |
- |
Return Type
array[Customer]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful customers search |
List[Customer] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"lastTracking" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"siren" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"keywords" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"city" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"postalCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"departmentId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"departmentCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siret" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"countryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "ADDRESS", "ADDRESS" ]
},
"regionCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"level1grouping" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"reconciliationAccount" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"filterOnLinkProjectCustomer" : true,
"countryCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"level2grouping" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"modificationTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"customerInternalType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"modificationById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"divisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"accountManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"closure" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"referentialDate" : "2020-01-23T04:56:07Z",
"group" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"salesmanId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"filterOnLinkCustomerToBill" : true,
"entityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"linkedCustomerIdForCustomerToBill" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"externalReference" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"intercoCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"changeTracking" : {
"updatedTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"updatedById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"statusId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"regionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"open" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.4.32. Search people links
POST |
/people/people-links/search |
Description
Search people links
DMF required:
-
DMF A20124: Api Crm / Customer / Search People Link
-
DMF 010135: Prospecting / Prospects / Show Management Links Tab
-
DMF 020143: Sales / Customer / Show Management Links Tab
-
DMF 020201: Sales / Quotations / New
-
DMF 020202: Sales / Quotations / Modify
-
DMF 030204: Third-parties / Other Third-parties / Search
-
DMF 040104: Purchases / Suppliers / Search
-
DMF 191517: Web Portal / Organizations & Contacts / Show Customer Business Links Tab
-
DMF 191519: Web Portal / Organizations & Contacts / Show Prospect Business Links Tab
-
DMF 191521: Web Portal / Organizations & Contacts / Show Customer Affiliation Links Tab
-
DMF 191523: Web Portal / Organizations & Contacts / Show Prospect Affiliation Links Tab
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria PeopleLinkCriteria |
- |
Return Type
array[PeopleLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful People Link's search |
List[PeopleLink] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"targetThirdPartyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"targetThirdPartyType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"sourceThirdPartyType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"linkSourceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"sourceThirdPartyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"linkType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"defaultLink" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"linkTargetId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "LINK_SOURCE", "LINK_SOURCE" ]
}
}
2.4.33. Set this site as main site of the customer.
POST |
/customers/{customer_id}/sites/{site_id}/set-main |
Description
Set this site as main site of the customer.
DMF required:
-
DMF A21106: Api Crm / Sites / Site Info
-
DMF 160403: Tools / Contacts / Modify
-
DMF 1601__: Tools / Events
-
DMF 1604__: Tools / Contacts
-
DMF 1608__: Tools / Resources
-
DMF 160403: Tools / Contacts / Modify
-
DMF 191506: Web Portal / Organizations & Contacts / Modify Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_id |
The id of the site |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Customer Site successfully set as main site. |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.34. Define a linked salesman as main linked salesman
POST |
/customers/{customer_id}/linked-salesmen/{employee_id}/set-main |
Description
Define a linked salesman as main linked salesman
DMF required:
-
DMF A20112: Api Crm / Customer / Update Customer’s Linked Salesman Custom Fields
-
DMF 020132: Sales / Customer / Modify Salesmen Tab
And
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
employee_id |
The id of an employee |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
LinkedSalesmen |
A customer linked salesman to be define as main LinkedSalesmen |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
A customer linked salesman has been successfully defined as main |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}
2.4.35. Update a Customer
POST |
/customers/{customer_id} |
Description
Update a Customer
DMF required:
-
DMF A20102: Api Crm / Customer / Update
-
DMF 010102: Prospecting / Prospects / Modify
-
DMF 020102: Sales / Customer / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer |
A Customer to be updated Customer |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
A Customer successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
}
2.4.36. Update a Customer Site
POST |
/customers/{customer_id}/sites/{site_id} |
Description
Update a Customer site
DMF required:
-
DMF A21102: Api Crm / Sites / Update Site
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
site_id |
The id of the site |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
site |
A Customer Site to be updated Site |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
A Customer Site successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}
2.4.37. Update a customer linked salesman custom fields
POST |
/customers/{customer_id}/linked-salesmen/{employee_id} |
Description
Update a customer linked salesman custom fields
DMF required:
-
DMF A20112: Api Crm / Customer / Update Customer’s Linked Salesman Custom Fields
-
DMF 020132: Sales / Customer / Modify Salesmen Tab
And
-
DMF A20116: Api Crm / Customer / Customer’s Linked Salesmen Info
-
DMF 020131: Sales / Customer / Show Salesmen Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
|
employee_id |
The id of an employee |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
LinkedSalesmen |
A customer linked salesman to be updated LinkedSalesmen |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
A customer linked salesman has been successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}
2.4.38. Update a people link between two third parties
POST |
/people/{third_party_type}/{third_party_id}/people-links/{people_link_id} |
Description
Update a people link between two third parties
DMF required:
-
DMF A20122: Api Crm / Customer / Update People Link
-
DMF 010134: Prospecting / Prospects / Modify Affiliation Links Tab
-
DMF 010136: Prospecting / Prospects / Modify Management Links Tab
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
|
people_link_id |
The id of the people link |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
peopleLink |
A people link to be updated PeopleLink |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Third Party's people link has successfully updated |
|
404 |
There is no people link |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"linkType" : "{}",
"linkSource" : {
"id" : "5000123",
"code" : "CODE",
"description" : "Loremp ipsum",
"type" : "{}",
"linkDirection" : "{}",
"static" : true,
"companyCode" : "AKSAS"
},
"linkSourceId" : "5000123",
"sourceThirdParty" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"sourceThirdPartyId" : "5000123",
"sourceThirdPartyType" : "{}",
"linkTarget" : {
"id" : "5000123",
"code" : "CODE",
"description" : "Loremp ipsum",
"type" : "{}",
"linkDirection" : "{}",
"static" : true,
"companyCode" : "AKSAS"
},
"linkTargetId" : "5000123",
"targetThirdParty" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"targetThirdPartyId" : "5000123",
"targetThirdPartyType" : "{}",
"defaultLink" : true
}
2.4.39. Upload the avatar of the specified customer.
POST |
/customers/{customer_id}/avatar/upload |
Description
Upload the avatar of the specified customer.
DMF required:
-
DMF A20110: Api Crm / Customer / Customer Avatar
-
DMF 010102: Prospecting / Prospects / Modify
-
DMF 020102: Sales / Customer / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
customer_id |
The id of the customer |
X |
null |
Form Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
document |
The file to upload. [file] |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
s |
Size in pixels of the image |
- |
null |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
The avatar has successfully been uploaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.4.40. Validate a prospect
POST |
/prospects/{prospect_id}/validate |
Description
Validate a prospect.
This API sets the isProspectValidated field to true, marking the prospect as validated.
The ID stays the same across all stages : prospect, validated prospect, or customer.
The type field identifies the stage (PROSPECT or CUSTOMER), and isProspectValidated applies only when the type is PROSPECT.
DMF required:
-
DMF A20127: Api Crm / Customer / Validate A Prospect
-
DMF 010140: Prospecting / Prospects / Validate Prospect
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
prospect_id |
The id of the prospect Note: The same ID is used for PROSPECT and CUSTOMER types. |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Prospect successfully validated. |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5. Events
2.5.1. Duplicate an event
POST |
/events/{event_id}/duplicate |
Description
Duplicate an event
DMF required:
-
DMF A20301: Api Crm / Event / Insert
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 160101: Tools / Events / New
-
DMF 191413: Web Portal / Opportunities / New / Modify Events In Opportunites
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully duplicated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.2. Mark event as completed
GET |
/events/{event_id}/done |
Description
Mark event as completed
DMF required:
-
DMF A20310: Api Crm / Event / Mark As Completed/uncompleted
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 160108: Tools / Events / Complete
-
DMF 0102__: Prospecting / Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Event successfully Marked as completed |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.3. Create an event
PUT |
/events |
Description
Create an event
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event |
The event to create Event |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully Created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"comment" : "contacter M bob",
"subject" : "contacter M bob",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "Dunning of customer/prospect",
"name" : "Dunning of customer/prospect",
"icon" : "fa fa-phone",
"typeEvent" : "{}",
"obsolete" : true,
"reply" : true,
"startCustomData" : 1,
"endCustomData" : 5,
"nbColsCustomData" : 15,
"displayableEverywhere" : true,
"creatableEverywhere" : true
},
"categoryId" : "5000123",
"owner" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"ownerId" : "5000123",
"date" : "2020-01-23T04:56:07Z",
"endDate" : "2020-01-23T04:56:07Z",
"duration" : 1,
"finished" : true,
"reply" : {
"id" : "5000123",
"name" : "CONFIRMEE"
},
"replyId" : "5000123",
"replyDate" : "2020-01-23T04:56:07Z",
"relationshipsCustomersAndProspect" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactsCustomerSite" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOpportunities" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsEmployees" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"companyCode" : "AKSAS",
"multiCompany" : false,
"completion" : "{}",
"relationshipsSuppliers" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOtherThirdParties" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksProjects" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSales" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksPurchases" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSupports" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksTrainings" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksCampaigns" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksRefs" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
} ],
"relationshipsRefs" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"reminderDate" : "2020-01-23T04:56:07Z",
"priority" : "{}",
"mainCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"mainCustomerId" : "5000123",
"mainProject" : {
"id" : "5000123",
"name" : "My project",
"companyCode" : "AKSAS",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"endCustomerId" : "5000123",
"internal" : false,
"leave" : false,
"leaveType" : "{}",
"customerType" : "{}"
},
"mainProjectId" : "5000123",
"fullDay" : true,
"completionPercentage" : "0",
"isHelpDeskEvent" : true,
"relationshipsCustomerSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ]
}
2.5.4. Create a link between event and an objet
PUT |
/events/{event_id}/object-links/{object_link_type}/{object_link_id} |
Description
Create a link between event and an objet
DMF required:
-
DMF A20302: Api Crm / Event / Update
-
DMF 160102: Tools / Events / Modify
-
DMF 191413: Web Portal / Opportunities / New / Modify Events In Opportunites
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
object_link_type |
The id of the object link |
X |
null |
|
object_link_id |
The id of the object link |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The link for between the event and the objet successfully created |
|
404 |
Not Found - There is no event corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.5. Create a relationship between event and a third party
PUT |
/events/{event_id}/relationships/{relationship_type}/{third_party_id} |
Description
Create a relationship between event and a third party
DMF required:
-
DMF A20301: Api Crm / Event / Insert
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 160101: Tools / Events / New
-
DMF 191413: Web Portal / Opportunities / New / Modify Events In Opportunites
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
relationship_type |
The type of the relationship (CUSTOMER / EMPLOYEE / OPPORTUNITY / CONTACT / …) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationship successfully Created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.6. Delete an event
DELETE |
/events/{event_id} |
Description
Delete an event
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Event successfully loaded Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.7. Get the relationships of the event
GET |
/events/{event_id}/relationships |
Description
Get the relationships of the event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Return Type
array[Relationship]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationships of the Event successfully loaded |
List[Relationship] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.8. Get the relationships for a type of the event
GET |
/events/{event_id}/relationships/{relationship_type} |
Description
Get the relationships for a type of the event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
relationship_type |
The type of the relationship (CUSTOMER / EMPLOYEE / OPPORTUNITY / CONTACT / …) |
X |
null |
Return Type
array[Relationship]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationships for a type of the event successfully loaded |
List[Relationship] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.9. Get an event
GET |
/events/{event_id} |
Description
Get an event
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.10. Get events breakdown by period
POST |
/events/breakdown/search |
Description
Get events breakdown by period
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventsBreakdownCriteria |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Events breakdown successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.5.11. Get the object links for a type and a third party of the event
GET |
/events/{event_id}/object-links/{object_link_type}/{object_link_id} |
Description
Get the object links for a type and a third party of the event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
object_link_type |
The id of the object link |
X |
null |
|
object_link_id |
The id of the object link |
X |
null |
Return Type
array[ObjectLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationship for the type and the third party of the event successfully loaded |
List[ObjectLink] |
404 |
Not Found - There is no event corresponding to this id Not Found - There is no object linked corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.12. Get the objects linked to the event
GET |
/events/{event_id}/object-links |
Description
Get the objects linked to the event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Return Type
array[ObjectLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationship for the type and the third party of the event successfully loaded |
List[ObjectLink] |
404 |
Not Found - There is no event corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.13. Get objects linked to the event with the specified type.
GET |
/events/{event_id}/object-links/{object_link_type} |
Description
Get objects linked to the event with the specified type.
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
object_link_type |
The id of the object link |
X |
null |
Return Type
array[ObjectLink]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationship for the type and the third party of the event successfully loaded |
List[ObjectLink] |
404 |
Not Found - There is no event corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.14. Get the relationship for a type and a third party of the event
GET |
/events/{event_id}/relationships/{relationship_type}/{third_party_id} |
Description
Get the relationship for a type and a third party of the event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
relationship_type |
The type of the relationship (CUSTOMER / EMPLOYEE / OPPORTUNITY / CONTACT / …) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Relationship for the type and the third party of the event successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.15. Patch an event - Deprecated
PATCH |
/events/{event_id}/postpone |
Deprecated
Tip
|
Use PATCH /events/{event_id} instead View |
Description
Patch an event. Only the field 'owner' can be patched so far
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
All patches to applies PatchElement |
- |
Responses
Code | Message | Datatype |
---|---|---|
404 |
This api is Deprecated - Use PATCH /events/{event_id} instead |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.5.16. Patch an event
PATCH |
/events/{event_id} |
Description
Patch the event matching the specified ID and using the list of parameters below.
DMF required:
-
DMF A20307: Api Crm / Event / Patch
-
DMF 160102: Tools / Events / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
All patches to applies PatchElement |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event has been successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.5.17. Postpone an event
POST |
/events/{event_id}/postpone |
Description
Postpone an event
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
date |
The new date of the event DateParamHolder |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Event successfully Postpone |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"date" : "2000-01-23T04:56:07.000+00:00"
}
2.5.18. Pre-fill an event
POST |
/events/pre-fill |
Description
Pre-fill a previously created event.
DMF required:
-
DMF A20301: Api Crm / Event / Insert
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 160101: Tools / Events / New
-
DMF 191413: Web Portal / Opportunities / New / Modify Events In Opportunites
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Event |
The event to be prefilled Event |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully pre-filled |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"comment" : "contacter M bob",
"subject" : "contacter M bob",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "Dunning of customer/prospect",
"name" : "Dunning of customer/prospect",
"icon" : "fa fa-phone",
"typeEvent" : "{}",
"obsolete" : true,
"reply" : true,
"startCustomData" : 1,
"endCustomData" : 5,
"nbColsCustomData" : 15,
"displayableEverywhere" : true,
"creatableEverywhere" : true
},
"categoryId" : "5000123",
"owner" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"ownerId" : "5000123",
"date" : "2020-01-23T04:56:07Z",
"endDate" : "2020-01-23T04:56:07Z",
"duration" : 1,
"finished" : true,
"reply" : {
"id" : "5000123",
"name" : "CONFIRMEE"
},
"replyId" : "5000123",
"replyDate" : "2020-01-23T04:56:07Z",
"relationshipsCustomersAndProspect" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactsCustomerSite" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOpportunities" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsEmployees" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"companyCode" : "AKSAS",
"multiCompany" : false,
"completion" : "{}",
"relationshipsSuppliers" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOtherThirdParties" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksProjects" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSales" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksPurchases" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSupports" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksTrainings" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksCampaigns" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksRefs" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
} ],
"relationshipsRefs" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"reminderDate" : "2020-01-23T04:56:07Z",
"priority" : "{}",
"mainCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"mainCustomerId" : "5000123",
"mainProject" : {
"id" : "5000123",
"name" : "My project",
"companyCode" : "AKSAS",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"endCustomerId" : "5000123",
"internal" : false,
"leave" : false,
"leaveType" : "{}",
"customerType" : "{}"
},
"mainProjectId" : "5000123",
"fullDay" : true,
"completionPercentage" : "0",
"isHelpDeskEvent" : true,
"relationshipsCustomerSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ]
}
2.5.19. Publish an event
POST |
/events/{event_id}/publish |
Description
Publish an event.
DMF required:
-
DMF A20305: Api Crm / Event / Publish
-
DMF 020205: Sales / Quotations / Print
-
DMF 160107: Tools / Events / Print
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
publishArguments |
The arguments for publishing an event PublishArguments |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Published document |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"template" : {
"id" : "5000123",
"code" : "MODELE_EDITION_001",
"name" : "Edition model for my documents",
"type" : {
"code" : "TEMP01",
"name" : "Template one",
"modelId" : "5000123",
"modelDescription" : "Lorem Ipsum"
},
"publishType" : "{}",
"path" : "C://MyDoc/Template/modele_edition_001",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"extensions" : ".pdf, .docx",
"defaultTemplate" : true,
"interactive" : true,
"order" : 1
},
"extension" : ".pdf",
"parameters" : [ {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
}, {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
} ],
"saveDocument" : true
}
2.5.20. Read an event
POST |
/events/{event_id}/read |
Description
Read an event
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned event EventReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "OWNER", "OWNER" ]
}
2.5.21. Remove the link between an event and an object.
DELETE |
/events/{event_id}/object-links/{object_link_type}/{object_link_id} |
Description
Remove the link between an event and an object.
DMF required:
-
DMF A20302: Api Crm / Event / Update
-
DMF 160102: Tools / Events / Modify
-
DMF 191413: Web Portal / Opportunities / New / Modify Events In Opportunites
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
object_link_type |
The id of the object link |
X |
null |
|
object_link_id |
The id of the object link |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Object linked successfully Removed |
<<>> |
404 |
Not Found - There is no event corresponding to this id Not Found - There is no object linked corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.22. Remove a relationship between event and a third party
DELETE |
/events/{event_id}/relationships/{relationship_type}/{third_party_id} |
Description
Remove a relationship between event and a third party
DMF required:
-
DMF A20303: Api Crm / Event / Delete
-
DMF 160103: Tools / Events / Delete
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
|
relationship_type |
The type of the relationship (CUSTOMER / EMPLOYEE / OPPORTUNITY / CONTACT / …) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Relationship successfully Removed |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.23. Find categories of events
POST |
/events/categories/search |
Description
Find categories of events
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria CategoryEventCriteria |
- |
Return Type
array[CategoryEvent]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful categories of events search |
List[CategoryEvent] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"displayableEverywhere" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"creatableEverywhere" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"obsolete" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"eventTypes" : "RDV"
}
2.5.24. Search an event related to a customer contact and site
POST |
/customers/sites/{site_id}/contacts/{contact_id}/events/search |
Description
Search an event related to a customer contact and site
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
site_id |
The id of the site |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventCriteria |
- |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Event]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Events successfully loaded |
List[Event] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"isHelpDeskEvent" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"completion" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"objectLinksSales" : {
"directDebitMandateId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"opportunityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"deliveryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quotationId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTableId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksTraining" : {
"sessionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"courseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksCampaign" : {
"campaignId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"subject" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"mainProjectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"priority" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "OWNER", "OWNER" ]
},
"objectLinksPurchase" : {
"request" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTable" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"receptionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quoteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksProject" : {
"projectTaskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"comment" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"mainCustomerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"reminderDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksSupport" : {
"issueId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierContractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractServiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"taskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"startDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.5.25. Search an event related to a supplier contact and site
POST |
/suppliers/sites/{site_id}/contacts/{contact_id}/events/search |
Description
Search an event related to a supplier contact and site
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
site_id |
The id of the site |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventCriteria |
- |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Event]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Events successfully loaded |
List[Event] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"isHelpDeskEvent" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"completion" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"objectLinksSales" : {
"directDebitMandateId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"opportunityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"deliveryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quotationId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTableId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksTraining" : {
"sessionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"courseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksCampaign" : {
"campaignId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"subject" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"mainProjectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"priority" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "OWNER", "OWNER" ]
},
"objectLinksPurchase" : {
"request" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTable" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"receptionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quoteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksProject" : {
"projectTaskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"comment" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"mainCustomerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"reminderDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksSupport" : {
"issueId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierContractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractServiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"taskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"startDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.5.26. Search events
POST |
/events/search |
Description
Search events
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Event]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Events successfully loaded |
List[Event] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"isHelpDeskEvent" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"completion" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"objectLinksSales" : {
"directDebitMandateId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"opportunityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"deliveryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quotationId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTableId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksTraining" : {
"sessionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"courseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksCampaign" : {
"campaignId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"subject" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"mainProjectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"priority" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "OWNER", "OWNER" ]
},
"objectLinksPurchase" : {
"request" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTable" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"receptionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quoteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksProject" : {
"projectTaskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"comment" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"mainCustomerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"reminderDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksSupport" : {
"issueId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierContractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractServiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"taskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"startDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.5.27. Search events for dashboard
POST |
/events/dashboard |
Description
Search events for dashboard
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventDashboardCriteria |
- |
Return Type
array[EventDashboardResult]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful events search |
List[EventDashboardResult] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"includeFinished" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.5.28. Search for search field behavior for the Events
GET |
/events/search-fields-information |
Deprecated
Tip
|
This API will soon be removed as it is no longer functional. No data will be returned when using it. |
Description
Get the list of search field behavior for Events
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Return Type
array[SearchControlBehavior]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Search field behavior results |
List[SearchControlBehavior] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.29. Find owners of events
GET |
/events/owners |
Description
Find owners of events
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Return Type
array[EmployeeBase]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Owners of the event successfully loaded |
List[EmployeeBase] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.30. Find potential owners of events
GET |
/events/owners-potential |
Description
Find potential owners of events
DMF required:
-
DMF A20306: Api Crm / Event / Info
-
DMF 160104: Tools / Events / Search
-
DMF 160105: Tools / Events / Show History
-
DMF 160904: Tools / Cross-function / Web Tasks List
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
text |
Text to filter |
- |
null |
Return Type
array[EmployeeBase]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Potential owners of the event successfully loaded |
List[EmployeeBase] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.31. Find replies of events
POST |
/events/replies/search |
Description
Find replies of events
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria ReplyEventCriteria |
- |
Return Type
array[ReplyEvent]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful replies of events search |
List[ReplyEvent] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.5.32. Search an event related to a third party
POST |
/people/{third_party_type}/{third_party_id}/events/search |
Description
Search an event related to a third party
DMF required:
-
DMF A20304: Api Crm / Event / Search
-
DMF 160104: Tools / Events / Search
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010107: Prospecting / Prospects / Events
-
DMF 020107: Sales / Customer / Events
-
DMF 030108: Third-parties / Sites / Events
-
DMF 030208: Third-parties / Other Third-parties / Events
-
DMF 040107: Purchases / Suppliers / Events
-
DMF 040407: Purchases / Receptions / Events
-
DMF 060113: Projects
-
DMF 140812: Helpdesk / Supplier Contracts / Events
-
DMF 141007: Helpdesk / Supplier Contracts - Services / Events In Contract Line
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
third_party_type |
The third party type (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
X |
null |
|
third_party_id |
The id of the third party (customer / employee / opportunity / contact / …) |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria EventCriteria |
- |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Event]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Events successfully loaded |
List[Event] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"isHelpDeskEvent" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"completion" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"objectLinksSales" : {
"directDebitMandateId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"opportunityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"deliveryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quotationId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTableId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksTraining" : {
"sessionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"courseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksCampaign" : {
"campaignId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"subject" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"mainProjectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"ownerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"priority" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "OWNER", "OWNER" ]
},
"objectLinksPurchase" : {
"request" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"billingTable" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"orderId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"invoiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"receptionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"quoteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"objectLinksProject" : {
"projectTaskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"comment" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"mainCustomerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"reminderDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"objectLinksSupport" : {
"issueId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierContractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"contractServiceId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"taskId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"startDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
}
}
2.5.33. Send an event by mail
POST |
/events/{event_id}/send-message |
Description
A complex Mail sent with a list of recipients represented by a recipient object, a body and a title.
Each MessageRecipient object will be handled in order to match Akuiteo 'Tiers' to real world email addresses.
DMF required:
-
DMF A20390: Api Crm / Event / Send Message
-
DMF 020205: Sales / Quotations / Print
-
DMF 160112: Tools / Events / Synchronize With Outlook
-
DMF 160107: Tools / Events / Print
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
The message to send TemplatedMessage |
- |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The mail has been correctly staged for background sending process |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"message" : {
"toRecipients" : [ {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
}, {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
} ],
"mail" : {
"cc" : [ "cc", "cc" ],
"cci" : [ "cci", "cci" ],
"replyTo" : "replyTo",
"from" : "from",
"to" : [ "to", "to" ],
"title" : "title",
"body" : "body"
},
"replyTo" : {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
},
"ccRecipients" : [ {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
}, {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
} ],
"cciRecipients" : [ {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
}, {
"id" : "5000123",
"summary" : "Text",
"address" : "jean@email.com",
"type" : "{}"
} ],
"publishedDocuments" : [ {
"isDocument" : true,
"documentId" : "112302",
"token" : "token"
}, {
"isDocument" : true,
"documentId" : "112302",
"token" : "token"
} ]
},
"templateId" : "255644",
"parameters" : [ {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
}, {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
} ]
}
2.5.34. Mark event as uncompleted
GET |
/events/{event_id}/todo |
Description
Mark event as uncompleted
DMF required:
-
DMF A20310: Api Crm / Event / Mark As Completed/uncompleted
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 160108: Tools / Events / Complete
-
DMF 0102__: Prospecting / Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Event successfully Marked as uncompleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.5.35. Update an event
POST |
/events/{event_id} |
Description
Update an event
DMF required:
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
Or
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
Or
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
Or
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event_id |
The id of the event |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
event |
The event to be updated Event |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Event successfully Updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"comment" : "contacter M bob",
"subject" : "contacter M bob",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "Dunning of customer/prospect",
"name" : "Dunning of customer/prospect",
"icon" : "fa fa-phone",
"typeEvent" : "{}",
"obsolete" : true,
"reply" : true,
"startCustomData" : 1,
"endCustomData" : 5,
"nbColsCustomData" : 15,
"displayableEverywhere" : true,
"creatableEverywhere" : true
},
"categoryId" : "5000123",
"owner" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"ownerId" : "5000123",
"date" : "2020-01-23T04:56:07Z",
"endDate" : "2020-01-23T04:56:07Z",
"duration" : 1,
"finished" : true,
"reply" : {
"id" : "5000123",
"name" : "CONFIRMEE"
},
"replyId" : "5000123",
"replyDate" : "2020-01-23T04:56:07Z",
"relationshipsCustomersAndProspect" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactsCustomerSite" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOpportunities" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsEmployees" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"companyCode" : "AKSAS",
"multiCompany" : false,
"completion" : "{}",
"relationshipsSuppliers" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsContactSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsSupplierSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"relationshipsOtherThirdParties" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksProjects" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSales" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksPurchases" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksSupports" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksTrainings" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksCampaigns" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123",
"eventId" : "5000123",
"number" : "5000123",
"title" : "Lorem ipsum",
"parentThirdPartyId" : "5000123"
} ],
"objectLinksRefs" : [ {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"objectLinkId" : "5000123"
} ],
"relationshipsRefs" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123"
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"reminderDate" : "2020-01-23T04:56:07Z",
"priority" : "{}",
"mainCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"mainCustomerId" : "5000123",
"mainProject" : {
"id" : "5000123",
"name" : "My project",
"companyCode" : "AKSAS",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"endCustomerId" : "5000123",
"internal" : false,
"leave" : false,
"leaveType" : "{}",
"customerType" : "{}"
},
"mainProjectId" : "5000123",
"fullDay" : true,
"completionPercentage" : "0",
"isHelpDeskEvent" : true,
"relationshipsCustomerSites" : [ {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
}, {
"id" : "5000123",
"type" : "{}",
"thirdPartyId" : "5000123",
"eventId" : "5000123",
"name" : "Lorem ipsum",
"detail" : "Lorem ipsum",
"phone" : "101010101",
"email" : "lorem@ipsum.com",
"customerId" : "5000123",
"parentThirdPartyId" : "5000123"
} ]
}
2.6. General
2.6.1. Analysis for CRM (opportunities and quotations)
POST |
/analysis |
Description
Business deals dashboard
DMF required:
-
DMF A20404: Api Crm / Analysis / Search
-
DMF 150105: Dashboards / Sales Analysis / Business Deals Dashboard
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
Query information |
All information to be taken into account for the analysis CrmAnalysis |
- |
Return Type
array[AnalysisResult]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Analysis results, each result is returned by item calculated according to the query information and each with the requested groups. |
List[AnalysisResult] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"filter" : {
"axeType" : "axeType",
"projectId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectCompanyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectDivisionGroupId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectDivisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectEstablishmentId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectDepartmentId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectActivityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSubFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSubFamily2Id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectVintageId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSalesManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectFinancialManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectProductionManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectCampaignId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectState" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectMarketId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"phaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subPhaseId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSubFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerGrouping1" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerGrouping2" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSectorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerState" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerCountryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerRegionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerAccountManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSalesmanId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerAccountManagerSupervisorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSalesmanSupervisorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"groupCustomer" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"prospect" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"date" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"probability" : {
"operator" : "IS",
"value" : "2",
"includeNullResults" : false,
"wildcards" : "*"
},
"companyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"currencyCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"pipelineId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"salesManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"technicalManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"salesManagerSupervisorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"technicalManagerSupervisorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productSubFamilyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"view" : {
"weightingForced0" : 0,
"dateLike" : "MONTH",
"weightingForced2" : 0.2,
"weightingForced1" : 0.1,
"weightingForced9" : 1,
"weightingForced4" : 0.4,
"value" : "AMOUNT",
"weighting" : "NONE",
"weightingForced3" : 0.3,
"objective" : false
},
"objects" : [ "ONGOING_OPPORTUNITIES", "SIGNED_QUOTATIONS" ],
"group" : {
"by" : [ "SALES_MANAGER_SUPERVISOR_CODE", "SALES_MANAGER_SUPERVISOR_ID" ],
"axes" : {
"example" : [ "PROJECT_ACTIVITY_NAME", "PROJECT_ACTIVITY_ID" ]
}
}
}
2.6.2. Searchables for CRM (customers / contacts customer site)
POST |
/sales-address-book/search |
Description
Searchables for CRM (customers / contacts customer site)
DMF required:
-
DMF 1915**: Web Portal / Organizations & Contacts
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria SalesAddressBookCriteria |
- |
Return Type
array[SalesAddressBook]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful Sales Address Book search |
List[SalesAddressBook] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"searchType" : "NAME",
"tag" : "tag"
}
2.7. Opportunities
2.7.1. Archive the opportunity
POST |
/opportunities/{opportunity_id}/archive |
Description
Archive the opportunity.
DMF required:
-
DMF A20219: Api Crm / Opportunities / Archive The Opportunity
-
DMF 010215: Prospecting / Opportunities / Archive
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
archiveArgument |
The reason for archiving the opportunity ArchiveArgument |
- |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The opportunity has been successfully archived |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"reasonId" : "5000152",
"comment" : "Lorem ipnum"
}
2.7.2. Change stage of opportunity
POST |
/opportunities/{opportunity_id}/change-stage/{stage_id} |
Description
Change stage of opportunity
DMF required:
-
DMF A20212: Api Crm / Opportunities / Update
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
stage_id |
The id of a stage |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Stage of opportunity successfully updated |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.3. Create an opportunity
PUT |
/opportunities |
Description
Create an opportunity
DMF required:
-
DMF A20211: Api Crm / Opportunities / Insert
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity |
An opportunity to be created Opportunity |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully inserted |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "OP2025",
"name" : "ON PREMISE",
"title" : "ON PREMISE",
"description" : "Loremp ipsum",
"postalCode" : "postalCode",
"city" : "city",
"country" : "country",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "5000123",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"endCustomerId" : "5000123",
"customerLocation" : {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001"
},
"customerLocationId" : "5000123",
"originType" : {
"id" : "5000123",
"code" : "CODE",
"name" : "CODE",
"order" : 2,
"endDate" : "2020-01-23T04:56:07Z",
"category" : "{}",
"default" : true
},
"originTypeId" : "5000123",
"origin" : "Lorem ipsum",
"pipe" : {
"id" : "5000123",
"code" : "BIZZ",
"name" : "Business",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z",
"right" : {
"id" : "5000123",
"code" : "AF0406",
"name" : "INFO"
},
"useRightAsDefault" : true,
"templatePipeId" : "5000123",
"defaultStageId" : "5000123",
"stages" : [ {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ]
},
"pipeId" : "5000123",
"stageDate" : "2020-01-23T04:56:07Z",
"stage" : {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
},
"stageId" : "5000123",
"openingDate" : "2020-01-23T04:56:07Z",
"expectedSignatureDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"weightingCoefficient" : 0.85,
"productionStartDate" : "2020-01-23T04:56:07Z",
"productionEndDate" : "2020-01-23T04:56:07Z",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"department" : {
"id" : "5000123",
"code" : "01-A",
"companyCode" : "AKSAS",
"name" : "Lorem Ipsum",
"analysis" : "analysis",
"comment" : "comment",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "entityId",
"projectType" : "{}",
"activities" : [ {
"id" : "5000123",
"code" : "code",
"name" : "name"
}, {
"id" : "5000123",
"code" : "code",
"name" : "name"
} ]
},
"departmentId" : "5000123",
"activity" : {
"id" : "5000123",
"code" : "code",
"name" : "name",
"departmentId" : "320014",
"endDate" : "2020-01-23T04:56:07Z"
},
"activityId" : "5000123",
"projectCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectCategoryId" : "5000123",
"projectSubCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryId" : "5000123",
"projectSubCategoryLevel2" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryLevel2Id" : "5000123",
"year" : {
"id" : "5000123",
"code" : "2025",
"name" : "Text",
"previousYearId" : "5000123",
"validityEndDate" : "2020-01-23T04:56:07Z",
"disabledDate" : "2020-01-23T04:56:07Z",
"repeating" : "{}"
},
"yearId" : "5000123",
"salesManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesManagerId" : "5000123",
"productionManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"productionManagerId" : "5000123",
"financialManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"financialManagerId" : "5000123",
"projectManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"projectManagerId" : "5000123",
"mainContact" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
},
"mainContactId" : "5000123",
"companyCode" : "AKSAS",
"quantity" : 4,
"amount" : 50000,
"amountCurrency" : 50000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "5000123",
"exchangeRate" : 10.26,
"actualSignatureDate" : "2020-01-23T04:56:07Z",
"lossDate" : "2020-01-23T04:56:07Z",
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"archiveReason" : {
"id" : "5000123",
"code" : "code",
"name" : "name"
},
"archiveReasonId" : "5000123",
"archiveComment" : "Lorem ipnum",
"lines" : [ {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"tags" : [ {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
}, {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
} ],
"strategic" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.4. Create a line of opportunity
PUT |
/opportunities/{opportunity_id}/lines |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead PUT /opportunities or POST /opportunities/{opportunity_id} |
Description
Create a line of opportunity
DMF required:
-
DMF A20201: Api Crm / Opportunities / Insert Line
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 191410: Web Portal / Opportunities / New
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunityLine |
The line of opportunity to be created OpportunityLine |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Line successfully Created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.5. Delete all lines of opportunity
DELETE |
/opportunities/{opportunity_id}/lines |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead POST /opportunities/{opportunity_id} or DELETE /opportunities/{opportunity_id} |
Description
Delete all lines of opportunity
DMF required:
-
DMF A20203: Api Crm / Opportunities / Delete Line
-
DMF 010203: Prospecting / Opportunities / Delete
-
DMF 191419: Web Portal / Opportunities / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
All lines of the opportunity successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.6. Delete an opportunity
DELETE |
/opportunities/{opportunity_id} |
Description
Delete an opportunity
DMF required:
-
DMF A20213: Api Crm / Opportunities / Delete
-
DMF 010203: Prospecting / Opportunities / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
An opportunity successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.7. Delete the site related information of an opportunity
DELETE |
/opportunities/{opportunity_id}/main-site-related-information/{site_related_information_id} |
Description
Delete the site related information of an opportunity
DMF required:
-
DMF A20107: Api Crm / Customer / Search Contacts
-
DMF 010106: Prospecting / Prospects / Contacts
-
DMF 020106: Sales / Customer / Contacts
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
site_related_information_id |
The id of the site related information |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Site related information successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.8. Delete a line of opportunity
DELETE |
/opportunities/{opportunity_id}/lines/{opportunity_line_id} |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead POST /opportunities/{opportunity_id} or DELETE /opportunities/{opportunity_id} |
Description
Delete a line of opportunity
DMF required:
-
DMF A20203: Api Crm / Opportunities / Delete Line
-
DMF 010203: Prospecting / Opportunities / Delete
-
DMF 191419: Web Portal / Opportunities / Delete
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
opportunity_line_id |
The id of the line of the opportunity |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Line of opportunity successfully Deleted |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.9. Get a Department
GET |
/departments/{department_id} |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get a Department
DMF required:
-
DMF A20806: Api Crm / Departments / Department Info
-
DMF 250117: Project / Schedule View / Project Details
-
DMF 060104: Projects
-
DMF 090104: Administrator / Setup / Company
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
department_id |
The id of a department |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Department successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.10. Get all Departments
GET |
/departments |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get all Departments
DMF required:
-
DMF A20805: Api Crm / Departments / Departments List
-
DMF 060104: Projects
-
DMF 090104: Administrator / Setup / Company
Return Type
array[Department]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All Departments |
List[Department] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.11. Get all lines of an opportunity
GET |
/opportunities/{opportunity_id}/lines |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead GET /opportunities/{opportunity_id} or POST /opportunities/search |
Description
Get all lines of an opportunity
DMF required:
-
DMF A20206: Api Crm / Opportunities / Info Line
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Return Type
array[OpportunityLine]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Lines of the Opportunity successfully loaded |
List[OpportunityLine] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.12. Get all opportunities
GET |
/opportunities |
Deprecated
Tip
|
This api is deprecated - Use the POST /opportunities/search instead. View |
Description
Get all opportunities
DMF required:
-
DMF A20214: Api Crm / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
Return Type
array[Opportunity]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All opportunities |
List[Opportunity] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.13. Get an opportunity
GET |
/opportunities/{opportunity_id} |
Description
Get an opportunity
DMF required:
-
DMF A20216: Api Crm / Opportunities / Info
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.14. Get the amounts of opportunity
GET |
/opportunities/{opportunity_id}/amounts |
Description
Get the amounts of opportunity
DMF required:
-
DMF A20206: Api Crm / Opportunities / Info Line
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.15. Get a line of opportunity
GET |
/opportunities/{opportunity_id}/lines/{opportunity_line_id} |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead GET /opportunities/{opportunity_id} or POST /opportunities/search |
Description
Get a line of opportunity
DMF required:
-
DMF A20206: Api Crm / Opportunities / Info Line
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
opportunity_line_id |
The id of the line of the opportunity |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Line of opportunity successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.16. Get an Origin Type
GET |
/origin-types/{origin_type_id} |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get an Origin Type
DMF required:
-
DMF A20606: Api Crm / Origin Types / Info Origin Type
-
DMF 0901__: Administrator / Setup
-
DMF 180801: Training / Setup / Setting
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
origin_type_id |
The id of an Origin Type |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Origin Type successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.17. Get all Origin Types
GET |
/origin-types |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get all Origin Types
DMF required:
-
DMF A20605: Api Crm / Origin Types / Origin Type List
-
DMF 0901__: Administrator / Setup
-
DMF 180801: Training / Setup / Setting
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010204: Prospecting / Opportunities / Search
Return Type
array[OriginType]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All Origin Types |
List[OriginType] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.18. Get a pipe
GET |
/pipes/{pipe_id} |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get a pipe
DMF required:
-
DMF A20506: Api Crm / Pipes / Info Pipe
-
DMF 090161: Administrator / Setup / Pipeline
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 010216: Prospecting / Opportunities / Mark Opportunity As Won/lost
-
DMF 191412: Web Portal / Opportunities / Win / Lose
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
pipe_id |
The id of the pipe |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Pipe successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.19. Get all pipes
GET |
/pipes |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get all pipes
DMF required:
-
DMF A20505: Api Crm / Pipes / Pipe List
-
DMF 090161: Administrator / Setup / Pipeline
Return Type
array[Pipe]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All pipes |
List[Pipe] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.20. Get a Stage
GET |
/stages/{stage_id} |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get a Stage
DMF required:
-
DMF A20706: Api Crm / Stages / Info Stage
-
DMF 0901__: Administrator / Setup
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
stage_id |
The id of a stage |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Stage successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.21. Get all Stages
GET |
/stages |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get all Stages
DMF required:
-
DMF A20705: Api Crm / Stages / Stage List
-
DMF 0901__: Administrator / Setup
Return Type
array[Stage]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All Stages |
List[Stage] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.22. Get a Year
GET |
/years/{year_id} |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get a Year
DMF required:
-
DMF A20906: Api Crm / Years / Year Info
-
DMF 060623: Projects / Setup / Years
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
year_id |
The id of the year |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Year successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.23. Get all years
GET |
/years |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get all years
DMF required:
-
DMF A20905: Api Crm / Years / Years List
-
DMF 060623: Projects / Setup / Years
Return Type
array[Year]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
All years |
List[Year] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.24. Mark the opportunity as lost
POST |
/opportunities/{opportunity_id}/lose |
Description
Mark the opportunity as lost.
The opportunity will be automatically archived.
DMF required:
-
DMF A20208: Api Crm / Opportunities / Mark The Opportunity As Lost
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010215: Prospecting / Opportunities / Archive
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
lossArgument |
Arguments for the loss of opportunity LossArgument |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The opportunity has been successfully marked as lost |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"lossDate" : "2020-01-23T04:56:07Z",
"archiveReasonId" : "5000152",
"comment" : "Lorem ipnum",
"stageId" : "5000152"
}
2.7.25. Patch an opportunity
PATCH |
/opportunities/{opportunity_id} |
Description
Patch the opportunity matching the specified ID and using the list of parameters below.
DMF required:
-
DMF A20202: Api Crm / Opportunities / Update Line
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191411: Web Portal / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
List of patches to apply PatchElement |
- |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully patched |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.7.26. Patch a line of opportunity
PATCH |
/opportunities/{opportunity_id}/lines/{opportunity_line_id} |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead POST /opportunities/{opportunity_id} or PATCH /opportunities/{opportunity_id} |
Description
Patch the line of matching the specified ID and using the list of parameters below.
DMF required:
-
DMF A20202: Api Crm / Opportunities / Update Line
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191411: Web Portal / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
opportunity_line_id |
The id of the line of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
patch_elements |
List of patches to apply PatchElement |
- |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Line of opportunity successfully patched |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"op" : "ADD",
"path" : "path",
"from" : "from",
"value" : "{}"
}
2.7.27. Pre-fill an opportunity
POST |
/opportunities/pre-fill |
Description
Pre-fill an opportunity
DMF required:
-
DMF A20214: Api Crm / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity |
The opportunity for pre-fill Opportunity |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully pre-filled |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "OP2025",
"name" : "ON PREMISE",
"title" : "ON PREMISE",
"description" : "Loremp ipsum",
"postalCode" : "postalCode",
"city" : "city",
"country" : "country",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "5000123",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"endCustomerId" : "5000123",
"customerLocation" : {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001"
},
"customerLocationId" : "5000123",
"originType" : {
"id" : "5000123",
"code" : "CODE",
"name" : "CODE",
"order" : 2,
"endDate" : "2020-01-23T04:56:07Z",
"category" : "{}",
"default" : true
},
"originTypeId" : "5000123",
"origin" : "Lorem ipsum",
"pipe" : {
"id" : "5000123",
"code" : "BIZZ",
"name" : "Business",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z",
"right" : {
"id" : "5000123",
"code" : "AF0406",
"name" : "INFO"
},
"useRightAsDefault" : true,
"templatePipeId" : "5000123",
"defaultStageId" : "5000123",
"stages" : [ {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ]
},
"pipeId" : "5000123",
"stageDate" : "2020-01-23T04:56:07Z",
"stage" : {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
},
"stageId" : "5000123",
"openingDate" : "2020-01-23T04:56:07Z",
"expectedSignatureDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"weightingCoefficient" : 0.85,
"productionStartDate" : "2020-01-23T04:56:07Z",
"productionEndDate" : "2020-01-23T04:56:07Z",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"department" : {
"id" : "5000123",
"code" : "01-A",
"companyCode" : "AKSAS",
"name" : "Lorem Ipsum",
"analysis" : "analysis",
"comment" : "comment",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "entityId",
"projectType" : "{}",
"activities" : [ {
"id" : "5000123",
"code" : "code",
"name" : "name"
}, {
"id" : "5000123",
"code" : "code",
"name" : "name"
} ]
},
"departmentId" : "5000123",
"activity" : {
"id" : "5000123",
"code" : "code",
"name" : "name",
"departmentId" : "320014",
"endDate" : "2020-01-23T04:56:07Z"
},
"activityId" : "5000123",
"projectCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectCategoryId" : "5000123",
"projectSubCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryId" : "5000123",
"projectSubCategoryLevel2" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryLevel2Id" : "5000123",
"year" : {
"id" : "5000123",
"code" : "2025",
"name" : "Text",
"previousYearId" : "5000123",
"validityEndDate" : "2020-01-23T04:56:07Z",
"disabledDate" : "2020-01-23T04:56:07Z",
"repeating" : "{}"
},
"yearId" : "5000123",
"salesManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesManagerId" : "5000123",
"productionManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"productionManagerId" : "5000123",
"financialManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"financialManagerId" : "5000123",
"projectManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"projectManagerId" : "5000123",
"mainContact" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
},
"mainContactId" : "5000123",
"companyCode" : "AKSAS",
"quantity" : 4,
"amount" : 50000,
"amountCurrency" : 50000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "5000123",
"exchangeRate" : 10.26,
"actualSignatureDate" : "2020-01-23T04:56:07Z",
"lossDate" : "2020-01-23T04:56:07Z",
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"archiveReason" : {
"id" : "5000123",
"code" : "code",
"name" : "name"
},
"archiveReasonId" : "5000123",
"archiveComment" : "Lorem ipnum",
"lines" : [ {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"tags" : [ {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
}, {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
} ],
"strategic" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.28. Publish an opportunity
POST |
/opportunities/{opportunity_id}/publish |
Description
Publish an opportunity
DMF required:
-
DMF A20215: Api Crm / Opportunities / Publish
-
DMF 010207: Prospecting / Opportunities / Print
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
publish_arguments |
The arguments for publishing opportunity PublishArguments |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Published document |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"template" : {
"id" : "5000123",
"code" : "MODELE_EDITION_001",
"name" : "Edition model for my documents",
"type" : {
"code" : "TEMP01",
"name" : "Template one",
"modelId" : "5000123",
"modelDescription" : "Lorem Ipsum"
},
"publishType" : "{}",
"path" : "C://MyDoc/Template/modele_edition_001",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"extensions" : ".pdf, .docx",
"defaultTemplate" : true,
"interactive" : true,
"order" : 1
},
"extension" : ".pdf",
"parameters" : [ {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
}, {
"groupName" : "text_box",
"labelText" : "Detail BL",
"pattern" : "cl",
"nameField" : "DetailBL",
"selectionList" : [ {
"label" : "Bank transfer",
"value" : "BT"
}, {
"label" : "Bank transfer",
"value" : "BT"
} ],
"nameFieldNext" : "DetailCheckbox",
"value" : "checked",
"required" : true
} ],
"saveDocument" : true
}
2.7.29. Get an opportunity with read options
POST |
/opportunities/{opportunity_id}/read |
Description
Get an opportunity with read options
DMF required:
-
DMF A20216: Api Crm / Opportunities / Info
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned opportunity OpportunityReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "CUSTOMER", "CUSTOMER" ]
}
2.7.30. Read the contacts related to an opportunity
POST |
/opportunities/{opportunity_id}/contacts/read |
Description
Read the contacts related to an opportunity
DMF required:
-
DMF A20206: Api Crm / Opportunities / Info Line
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned contact ContactReadOption |
- |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
onlyEmployees |
Filter on contacts being employees or not |
- |
null |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The contacts of an opportunity |
List[Contact] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.7.31. Read a line of opportunity
POST |
/opportunities/{opportunity_id}/lines/{opportunity_line_id}/read |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead POST /opportunities/{opportunity_id}/read or POST /opportunities/search |
Description
Read a line of opportunity
DMF required:
-
DMF A20206: Api Crm / Opportunities / Info Line
-
DMF 010206: Prospecting / Opportunities / Show History
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
opportunity_line_id |
The id of the line of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options for returned opportunity line OpportunityLineReadOption |
- |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Line of opportunity successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "TYPE", "TYPE" ]
}
2.7.32. Search opportunities
POST |
/opportunities/search |
Description
Search opportunities
DMF required:
-
DMF A20214: Api Crm / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria OpportunityCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Opportunity]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful Opportunities search |
List[Opportunity] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"country" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"stageStatus" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productionEndDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"strategic" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"archiveReasonId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"readOption" : {
"options" : [ "CUSTOMER", "CUSTOMER" ]
},
"projectSubCategoryCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"activityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectManagerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerLocationName" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"currencyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"endCustomerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSubCategoryLevel2Code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectCategoryCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"creationDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"changeTracking" : {
"updatedTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"updatedById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"expectedSignatureDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"customerLocationId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productionManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"originTypeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"stageDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"actualSignatureDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"endCustomerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tagId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"origin" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"financialManagerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"description" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSiteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productionStartDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"financialManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"salesManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"openingDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"stageId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"archiveComment" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerCriteria" : {
"sectorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"salesmanId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"subCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"accountManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"categoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
},
"originTypeCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"productionManagerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"entityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"pipeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"lossDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"probabilityLevel" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSubCategoryLevel2Id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectManagerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"pipeCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"projectSubCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"salesManagerCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"stageCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.7.33. Search opportunity lines
POST |
/opportunities/lines/search |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead GET /opportunities/{opportunity_id} or POST /opportunities/search |
Description
Search opportunity lines
DMF required:
-
DMF A20204: Api Crm / Opportunities / Search Lines
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria OpportunityLineCriteria |
- |
Return Type
array[OpportunityLine]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful Search |
List[OpportunityLine] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"opportunityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "TYPE", "TYPE" ]
}
}
2.7.34. Search opportunity tags
POST |
/opportunities/tags/search |
Description
Search opportunity tags
DMF required:
-
DMF A20204: Api Crm / Opportunities / Search Lines
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Search criteria TagCriteria |
- |
Return Type
array[Tag]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful opportunity tags search |
List[Tag] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"type" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.7.35. Search opportunities types
GET |
/opportunities/types/search |
Description
Search opportunities types
DMF required:
-
DMF A20204: Api Crm / Opportunities / Search Lines
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0102__: Prospecting / Opportunities
-
DMF 191401: Web Portal / Opportunities / Show My Opportunities
-
DMF 191402: Web Portal / Opportunities / Show My Team’s Opportunities
-
DMF 191403: Web Portal / Opportunities / Show My Department’s Opportunities
-
DMF 191404: Web Portal / Opportunities / Show All Opportunities
-
DMF 191405: Web Portal / Opportunities / Show My Team’s Opportunities (team I Am Managing)
Parameters
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
searchText |
The text to find |
- |
null |
Return Type
array[OpportunityType]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Successful Opportunity search |
List[OpportunityType] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.36. Get the list of pipes matching with the search criteria
POST |
/pipes/search |
Deprecated
Tip
|
This API will soon be moved to another domain but remains functional. |
Description
Get the list of pipes matching with the search criteria
DMF required:
-
DMF A20504: Api Crm / Pipes / Search Pipe
-
DMF 010201: Prospecting / Opportunities / New
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 010204: Prospecting / Opportunities / Search
-
DMF 0202__: Sales / Quotations
-
DMF 020202: Sales / Quotations / Modify
-
DMF 090161: Administrator / Setup / Pipeline
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (Code, name, etc…) PipeCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Pipe]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Pipes have been successfully loaded |
List[Pipe] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"companyId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"defaultStageId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"templatePipeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"validity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"readOption" : {
"options" : [ "COMPANY", "COMPANY" ]
}
}
2.7.37. Search for opportunity stages matching the specified search criteria.
POST |
/stages/search |
Deprecated
Tip
|
This API will soon be removed. |
Description
Search for opportunity stages matching the specified search criteria.
Note: This API is marked as deprecated but remains functional. It will soon be moved to another domain.
DMF required:
-
DMF A20704: Api Crm / Stages / Search Stage
-
DMF 0901__: Administrator / Setup
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (Code, name, etc…) StageCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Stage]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity stages successfully loaded |
List[Stage] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"default" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"endDate" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"status" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
2.7.38. Unarchive an opportunity.
POST |
/opportunities/{opportunity_id}/unarchive |
Description
Unarchive an opportunity.
The new opportunity stage can only have the status 'IN_PROGRESS'.
DMF required:
-
DMF A20205: Api Crm / Opportunities / De-archive The Opportunity
-
DMF 010218: Prospecting / Opportunities / Cancel Archiving
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
stage |
The id of the new opportunity stage StringParamHolder |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The opportunity has been successfully unarchived |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"value" : "true"
}
2.7.39. Update the previsionnal date of opportunity
POST |
/opportunities/{opportunity_id}/update/estimated-signature-date |
Description
Update the previsionnal date of opportunity
DMF required:
-
DMF A20217: Api Crm / Opportunities / Update Previsionnal Date
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
date |
The opportunite with new date to set |
- |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Signature Date successfully Updated |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.7.40. Update an opportunity
POST |
/opportunities/{opportunity_id} |
Description
Update an opportunity
DMF required:
-
DMF A20212: Api Crm / Opportunities / Update
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity |
An opportunity to be updated Opportunity |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
An opportunity successfully updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "OP2025",
"name" : "ON PREMISE",
"title" : "ON PREMISE",
"description" : "Loremp ipsum",
"postalCode" : "postalCode",
"city" : "city",
"country" : "country",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "5000123",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"endCustomerId" : "5000123",
"customerLocation" : {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001"
},
"customerLocationId" : "5000123",
"originType" : {
"id" : "5000123",
"code" : "CODE",
"name" : "CODE",
"order" : 2,
"endDate" : "2020-01-23T04:56:07Z",
"category" : "{}",
"default" : true
},
"originTypeId" : "5000123",
"origin" : "Lorem ipsum",
"pipe" : {
"id" : "5000123",
"code" : "BIZZ",
"name" : "Business",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z",
"right" : {
"id" : "5000123",
"code" : "AF0406",
"name" : "INFO"
},
"useRightAsDefault" : true,
"templatePipeId" : "5000123",
"defaultStageId" : "5000123",
"stages" : [ {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ]
},
"pipeId" : "5000123",
"stageDate" : "2020-01-23T04:56:07Z",
"stage" : {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
},
"stageId" : "5000123",
"openingDate" : "2020-01-23T04:56:07Z",
"expectedSignatureDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"weightingCoefficient" : 0.85,
"productionStartDate" : "2020-01-23T04:56:07Z",
"productionEndDate" : "2020-01-23T04:56:07Z",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"department" : {
"id" : "5000123",
"code" : "01-A",
"companyCode" : "AKSAS",
"name" : "Lorem Ipsum",
"analysis" : "analysis",
"comment" : "comment",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "entityId",
"projectType" : "{}",
"activities" : [ {
"id" : "5000123",
"code" : "code",
"name" : "name"
}, {
"id" : "5000123",
"code" : "code",
"name" : "name"
} ]
},
"departmentId" : "5000123",
"activity" : {
"id" : "5000123",
"code" : "code",
"name" : "name",
"departmentId" : "320014",
"endDate" : "2020-01-23T04:56:07Z"
},
"activityId" : "5000123",
"projectCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectCategoryId" : "5000123",
"projectSubCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryId" : "5000123",
"projectSubCategoryLevel2" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryLevel2Id" : "5000123",
"year" : {
"id" : "5000123",
"code" : "2025",
"name" : "Text",
"previousYearId" : "5000123",
"validityEndDate" : "2020-01-23T04:56:07Z",
"disabledDate" : "2020-01-23T04:56:07Z",
"repeating" : "{}"
},
"yearId" : "5000123",
"salesManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesManagerId" : "5000123",
"productionManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"productionManagerId" : "5000123",
"financialManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"financialManagerId" : "5000123",
"projectManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"projectManagerId" : "5000123",
"mainContact" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
},
"mainContactId" : "5000123",
"companyCode" : "AKSAS",
"quantity" : 4,
"amount" : 50000,
"amountCurrency" : 50000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "5000123",
"exchangeRate" : 10.26,
"actualSignatureDate" : "2020-01-23T04:56:07Z",
"lossDate" : "2020-01-23T04:56:07Z",
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"archiveReason" : {
"id" : "5000123",
"code" : "code",
"name" : "name"
},
"archiveReasonId" : "5000123",
"archiveComment" : "Lorem ipnum",
"lines" : [ {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"tags" : [ {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
}, {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
} ],
"strategic" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.41. Update the amounts of opportunity
POST |
/opportunities/{opportunity_id}/amounts |
Description
Update the amounts of opportunity
DMF required:
-
DMF A20202: Api Crm / Opportunities / Update Line
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191411: Web Portal / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity |
The opportunity to be updated Opportunity |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Opportunity successfully Updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "OP2025",
"name" : "ON PREMISE",
"title" : "ON PREMISE",
"description" : "Loremp ipsum",
"postalCode" : "postalCode",
"city" : "city",
"country" : "country",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "5000123",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"customerId" : "5000123",
"endCustomer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "AKSAS",
"legalName2" : "AKSAS",
"type" : "{}",
"indicators" : {
"customerId" : "5000123",
"indicator1" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator2" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
},
"indicator3" : {
"id" : "5000123",
"customerId" : "5000123",
"code" : "code",
"name" : "name",
"colorHexCode" : "colorHexCode",
"byDefault" : false,
"order" : 9
}
},
"accountManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"accountManagerId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"salesman" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesmanId" : "5000123",
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"open" : "2020-01-23T04:56:07Z",
"closure" : "2020-01-23T04:56:07Z",
"lastTracking" : "2020-01-23T04:56:07Z",
"status" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"statusId" : "5000123",
"accountingParameters" : {
"customerId" : "5000123",
"accountingNumber" : "C320",
"intercoCode" : "C255",
"isNotBooked" : false,
"isFactoringSupported" : false,
"isDematerializedInvoices" : false,
"currencyCode" : "EUR",
"mainReconciliationAccountNumber" : "411000",
"reconciliationAccount2Number" : "411000",
"reconciliationAccount3Number" : "411000",
"reconciliationAccount4Number" : "411000",
"reconciliationAccount5Number" : "411000",
"siaControlNumber" : "418100",
"deferredIncomeReconciliationAccountNumber" : "487000",
"internalReconciliationAccountNumber" : "48700",
"journalCode" : "BN",
"internalType" : "{}",
"group" : false
},
"conditionOfPayment" : {
"code" : "5 days End of month by bank transfer",
"deadLine" : "5",
"term" : "1",
"day" : 10,
"referenceOnBankStatement" : "LIVIA"
},
"methodOfPayment" : "{}",
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true,
"customerId" : "500124"
},
"automaticUnpaidInvoiceReminder" : true,
"manualUnpaidInvoiceReminder" : true,
"externalReference" : "Lorem ipsum",
"serviceProviderProject" : {
"companyCode" : "AKSAS",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123"
},
"firstPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"firstPricingMethodId" : "5000123",
"secondPricingMethod" : {
"id" : "5000123",
"code" : "AKAS",
"name" : "TARIFS AKAS"
},
"secondPricingMethodId" : "5000123",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "5000123",
"subCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"type" : "{}",
"category" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"categoryId" : "500143",
"grouping" : "grouping",
"ranking" : 2
},
"subCategoryId" : "5000123",
"profession" : {
"id" : "5000123",
"code" : "LYR",
"name" : "Lawyer"
},
"professionId" : "5000123",
"professionalCategory" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"companyId" : "5000123",
"ranking" : 5
},
"professionalCategoryId" : "5000123",
"sector" : {
"id" : "5000123",
"code" : "CODE",
"name" : "Name",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"companyId" : "5000123",
"ranking" : 5
},
"sectorId" : "5000123",
"level1grouping" : "3-L",
"level2grouping" : "MIDDLE MARKET",
"exclusionCodes" : "Text",
"keywords" : "Text",
"SIREN" : "362 521 879",
"SIRET" : "362 521 879 00034",
"APE" : "01.12Z",
"languageCode" : "fr",
"equity" : 15000,
"revenue" : 200,
"unit" : "M EUROS",
"headcount" : 1000,
"accountingPeriod" : "24",
"legalForm" : "SARL",
"sites" : [ {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
}, {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001",
"fullName" : "Lorem ipsum",
"fullName2" : "SAAS",
"validUntil" : "2020-01-23T04:56:07Z",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId",
"phone" : "101010101",
"email" : "jean@email.com",
"mobilePhone" : "401010101",
"fax" : "101010101",
"webSite" : "www.example.com",
"main" : true,
"manager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"managerId" : "5000123",
"externalReference" : "ABC123",
"SIRET" : "362 521 879 00034",
"siteCode" : "siteCode",
"VATNumber" : "VATNumber",
"notes" : "Loremp ipsum",
"useForBillingAddress" : true,
"useForBillingAddressDefault" : true,
"useForDeliveryAddress" : true,
"useForDeliveryAddressDefault" : true,
"useForOrderAddress" : true,
"useForOrderAddressDefault" : true,
"useForDunningAddress" : true,
"useForDunningAddressDefault" : true,
"useForSupportAddress" : true,
"useForSupportAddressDefault" : true,
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"taxInformation" : {
"vatArea" : {
"id" : "5000123",
"code" : "AREA",
"name" : "Area"
},
"vatAreaId" : "500123",
"VATAreaId" : "500123",
"vatNumber" : "1",
"VATNumber" : "1",
"exempt" : true,
"euExempt" : true
},
"chorusInformation" : {
"serviceCode" : "Z-FDJ-CA",
"serviceName" : "SCA",
"accountingJournalId" : "5000123"
}
} ],
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"phone" : "101010101",
"email" : "jean@email.com",
"notes" : "Lorem ipsum",
"salesmen" : [ {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
}, {
"id" : "5000123",
"customerId" : "5000123",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"mainLinkedSalesman" : false,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"thirdPartyLinkType" : {
"id" : "5000123",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000666",
"code" : "VARIOUS",
"name" : "Various",
"endDate" : "2020-01-23T04:56:07Z",
"requiredSiren" : false
},
"thirdPartyLinkTypeId" : "5000123",
"isProspectValidated" : true,
"bankingInformations" : [ {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
}, {
"id" : "5000123",
"sepa" : {
"bankDetails" : {
"entity" : "30002",
"counter" : "550",
"accountNumber" : "0000157841Z",
"key" : "25",
"domiciliation" : "AURA"
},
"bic" : {
"country" : "FR (for 'FRANCE')",
"bank" : "DAAE",
"location" : "PP",
"branch" : "CCT"
},
"iban" : {
"country" : "FR (for 'FRANCE')",
"key" : "69",
"accountNumber" : "0000157841Z"
}
},
"noneSepa" : {
"defaultBankDetail" : false,
"beneficiary" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
},
"intermediate" : {
"holder" : {
"name" : "RITA",
"firstName" : "BRITA",
"accountType" : "{}",
"accountNumber" : "123456789"
},
"bank" : {
"bankName" : "UBA",
"bankName2" : "UBA",
"bankType" : "{}",
"bankCode" : "C8",
"bankAddress" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
}
}
}
},
"statusChangeDate" : "2000-06-21T04:56:07.000+00:00",
"statusChangeArgument" : {
"comment" : "Comment",
"status" : "{}"
},
"validator" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"validatorId" : "5000123",
"action" : "{}",
"type" : "{}"
} ]
},
"endCustomerId" : "5000123",
"customerLocation" : {
"id" : "5000123",
"code" : "code",
"name" : "Paris",
"customer" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"customerId" : "CUST_001"
},
"customerLocationId" : "5000123",
"originType" : {
"id" : "5000123",
"code" : "CODE",
"name" : "CODE",
"order" : 2,
"endDate" : "2020-01-23T04:56:07Z",
"category" : "{}",
"default" : true
},
"originTypeId" : "5000123",
"origin" : "Lorem ipsum",
"pipe" : {
"id" : "5000123",
"code" : "BIZZ",
"name" : "Business",
"company" : {
"id" : "5000123",
"code" : "AK",
"name" : "Akuiteo",
"legalName" : "legalName",
"siren" : "siren",
"siret" : "siret",
"calendar" : {
"id" : "5000123",
"code" : "Text",
"name" : "Text",
"default" : true,
"daysNotWorked" : [ 6, 6 ],
"holidays" : [ {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
}, {
"date" : "2000-06-21T04:56:07.000+00:00",
"type" : "FERIE"
} ]
},
"calendarId" : "calendarId",
"color" : "color",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "currencyId",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"addressId" : "addressId"
},
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z",
"right" : {
"id" : "5000123",
"code" : "AF0406",
"name" : "INFO"
},
"useRightAsDefault" : true,
"templatePipeId" : "5000123",
"defaultStageId" : "5000123",
"stages" : [ {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ]
},
"pipeId" : "5000123",
"stageDate" : "2020-01-23T04:56:07Z",
"stage" : {
"id" : "5000123",
"code" : "ANNULATION",
"name" : "Analysis",
"order" : 2,
"status" : "{}",
"endDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"lockProbabilityLevel" : true,
"default" : true,
"color" : "#00FF00",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
},
"stageId" : "5000123",
"openingDate" : "2020-01-23T04:56:07Z",
"expectedSignatureDate" : "2020-01-23T04:56:07Z",
"probabilityLevel" : "{}",
"weightingCoefficient" : 0.85,
"productionStartDate" : "2020-01-23T04:56:07Z",
"productionEndDate" : "2020-01-23T04:56:07Z",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "5000123",
"department" : {
"id" : "5000123",
"code" : "01-A",
"companyCode" : "AKSAS",
"name" : "Lorem Ipsum",
"analysis" : "analysis",
"comment" : "comment",
"entity" : {
"id" : "5000123",
"code" : "01-BRDX",
"name" : "Bordeaux",
"legalName" : "Customer care",
"division" : {
"id" : "5000123",
"name" : "Rhone-Alpes",
"code" : "RA",
"group" : {
"id" : "5000123",
"name" : "West",
"code" : "WST",
"serviceId" : "5000123"
},
"groupId" : "5000123",
"companyId" : "5000123"
},
"divisionId" : "5000123",
"divisionCode" : "01-DIV",
"companyId" : "5000123",
"endDate" : "2020-01-23T04:56:07Z"
},
"entityId" : "entityId",
"projectType" : "{}",
"activities" : [ {
"id" : "5000123",
"code" : "code",
"name" : "name"
}, {
"id" : "5000123",
"code" : "code",
"name" : "name"
} ]
},
"departmentId" : "5000123",
"activity" : {
"id" : "5000123",
"code" : "code",
"name" : "name",
"departmentId" : "320014",
"endDate" : "2020-01-23T04:56:07Z"
},
"activityId" : "5000123",
"projectCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectCategoryId" : "5000123",
"projectSubCategory" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryId" : "5000123",
"projectSubCategoryLevel2" : {
"id" : "5000123",
"code" : "LANG",
"name" : "Language",
"endDate" : "2000-06-21",
"companyCode" : "AKSAS",
"type" : "{}",
"grouping" : "grouping",
"ranking" : 5
},
"projectSubCategoryLevel2Id" : "5000123",
"year" : {
"id" : "5000123",
"code" : "2025",
"name" : "Text",
"previousYearId" : "5000123",
"validityEndDate" : "2020-01-23T04:56:07Z",
"disabledDate" : "2020-01-23T04:56:07Z",
"repeating" : "{}"
},
"yearId" : "5000123",
"salesManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"salesManagerId" : "5000123",
"productionManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"productionManagerId" : "5000123",
"financialManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"financialManagerId" : "5000123",
"projectManager" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"projectManagerId" : "5000123",
"mainContact" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
},
"mainContactId" : "5000123",
"companyCode" : "AKSAS",
"quantity" : 4,
"amount" : 50000,
"amountCurrency" : 50000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"currencyId" : "5000123",
"exchangeRate" : 10.26,
"actualSignatureDate" : "2020-01-23T04:56:07Z",
"lossDate" : "2020-01-23T04:56:07Z",
"contacts" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"maidenName" : "Jeanne",
"title" : "M.",
"titleType" : "{}",
"phone" : "101010101",
"mobilePhone" : "101010101",
"email" : "customer@akuiteo.fr",
"email2" : "customer@akuiteo.fr",
"emailAddressNotKnown" : true,
"email2AddressNotKnown" : true,
"emailBlackListed" : true,
"email2BlackListed" : true,
"position" : "RESP GESTION",
"employee" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"employeeId" : "5000123",
"functionTitle" : "Lorem ipsum",
"pictureId" : "5000123",
"service" : "Lorem ipsum",
"keywords" : "Lorem ipsum",
"comment" : "Lorem ipsum",
"addressId" : "5000123",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"entryDate" : "2020-01-23T04:56:07Z",
"disappearedOn" : "2020-01-23T04:56:07Z",
"disappeared" : true,
"lastTracking" : "2020-01-23T04:56:07Z",
"customerRelatedInformation" : [ {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
}, {
"id" : "5000123",
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"showAllRequests" : true,
"noLongerWorkForThisCompany" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"customerName" : "Akuiteo"
} ],
"sitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"label" : "Manager",
"title" : "Mr",
"service" : "R&D",
"position" : "Accountant",
"managerId" : "5000123",
"manager" : {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe"
},
"phone" : "50001237890",
"phoneExtension" : "606060606",
"fax" : "418 643 3210",
"mobilePhone" : "50001237890",
"workPhone" : "606060606",
"email" : "jean@email.fr",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"customerId" : "5000123",
"thirdPartyRef" : {
"thirdPartyId" : "5000123",
"thirdPartyType" : "Lorem ipsum"
},
"contactId" : "5000123",
"siteId" : "5000123",
"siteName" : "Lyon",
"mainSite" : true,
"decisionMaker" : true,
"financialContact" : true,
"mainContact" : true,
"salesContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"helpdeskVIPContact" : true,
"helpdeskBlacklisted" : true,
"trainingContact" : true,
"intern" : true,
"hiddenOnCRM" : true,
"excludeFromUsersOnIssues" : true,
"notes" : "Text",
"exitDate" : "2020-01-23T04:56:07Z",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
},
"recipientOfQuote" : true,
"recipientOfSalesOrder" : true,
"recipientOfDeliveryNote" : true,
"recipientOfSalesInvoice" : true,
"recipientOfReceipt" : true,
"recipientOfQuotation" : true,
"recipientOfPurchaseOrder" : true,
"recipientOfTerms" : true,
"recipientOfDunning" : true,
"recipientOfAllSitesInvoices" : true,
"recipientOfAllSitesDunning" : true,
"markedForAnonymization" : true,
"supplierSitesRelatedInformation" : [ {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
}, {
"id" : "5000123",
"code" : "CT2024",
"name" : "Jean",
"firstName" : "Phillipe",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"contactId" : "5000123",
"supplierId" : "5000123",
"decisionMaker" : true,
"email" : "contact@email.com",
"emailAddressNotKnown" : true,
"emailBlackListed" : true,
"exitDate" : "2020-01-23T04:56:07Z",
"fax" : "101010101",
"financialContact" : true,
"helpdeskContact" : true,
"helpdeskMainContact" : true,
"label" : "Example",
"mainContact" : true,
"mainSite" : true,
"mobilePhone" : "123456789",
"notes" : "comment",
"phone" : "123456789",
"phoneExtension" : "33",
"position" : "position",
"salesContact" : true,
"service" : "Lorem ipsum",
"siteId" : "5000123",
"site" : {
"id" : "5000123",
"name" : "name",
"supplierId" : "supplierId"
},
"title" : "Mrs",
"workPhone" : "123456789"
} ],
"suppliersRelatedInformation" : [ {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
}, {
"id" : "5000123",
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"companyId" : "5000123",
"contactId" : "5000123",
"supplierId" : "5000123",
"supplier" : {
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo"
},
"noLongerWorkForThisCompany" : true
} ]
} ],
"archiveReason" : {
"id" : "5000123",
"code" : "code",
"name" : "name"
},
"archiveReasonId" : "5000123",
"archiveComment" : "Lorem ipnum",
"lines" : [ {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}, {
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
} ],
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"tags" : [ {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
}, {
"id" : "5000123",
"companyId" : "5000123",
"type" : "{}",
"code" : "ERR",
"name" : "ISSUE",
"comment" : "Lorem ipsum",
"color" : "#56b7c",
"icon" : "fa fa-plus",
"endDate" : "2000-06-21T04:56:07.000+00:00",
"objectId" : "5000123",
"action" : "{}"
} ],
"strategic" : true,
"changeTracking" : {
"createdTime" : "2000-06-21T04:56:07.000+00:00",
"createdBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"createdById" : "5000123",
"modificationTime" : "2000-06-21T04:56:07.000+00:00",
"modificationBy" : {
"id" : "5000123",
"code" : "TRI",
"name" : "Doe",
"firstName" : "John"
},
"modificationById" : "5000123"
},
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.42. Update a line of opportunity
POST |
/opportunities/{opportunity_id}/lines/{opportunity_line_id} |
Deprecated
Tip
|
This API will soon be removed. Use these APIs instead POST /opportunities/{opportunity_id} or PATCH /opportunities/{opportunity_id} |
Description
Update a line of opportunity
DMF required:
-
DMF A20202: Api Crm / Opportunities / Update Line
-
DMF 010202: Prospecting / Opportunities / Modify
-
DMF 191411: Web Portal / Opportunities / Modify
-
DMF 191511: Web Portal / Organizations & Contacts / Modify Opportunities
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
|
opportunity_line_id |
The id of the line of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
line |
The line to be updated OpportunityLine |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
Line of opportunity successfully Updated |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"opportunityId" : "5000123",
"opportunityType" : {
"id" : "5000123",
"code" : "LOCATION",
"name" : "Abonnement Location",
"recurrenceType" : "{}",
"valorizationType" : "{}",
"recurrenceDuration" : 12
},
"opportunityTypeId" : "5000123",
"sortingNumber" : 0,
"amount" : 50000,
"amountCurrency" : 50000,
"amountTotal" : 500000,
"amountTotalCurrency" : 500000,
"currencyCode" : "EUR",
"currency" : {
"id" : "5000123",
"name" : "Euro",
"code" : "EUR",
"order" : 17,
"euro" : true,
"euroRate" : 0.9678,
"endDate" : "2000-06-21T04:56:07.000+00:00",
"euroRateStartDate" : "2020-01-23T04:56:07Z",
"euroRateEndDate" : "2020-01-23T04:56:07Z"
},
"quantity" : 500000,
"comment" : "Lorem ipsum",
"margin" : 20,
"recurrenceType" : "{}",
"recurrenceDuration" : 12,
"customData" : {
"key" : {
"type" : "{}",
"value" : "Autoref 010520",
"name" : "Reference 4",
"realOrder" : 0,
"label" : "REFERENCE_4"
}
},
"action" : "{}",
"formConfig" : {
"type" : "{}",
"fields" : [ {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}, {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
} ],
"controls" : {
"key" : {
"id" : "50000123",
"property" : "Kilometers",
"required" : true,
"visible" : true,
"enabled" : true,
"defaultValue" : "50 (for the field 'Kilometers' case)",
"valueSelectors" : [ "valueSelectors", "valueSelectors" ],
"additionalValueSelectors" : [ "additionalValueSelectors", "additionalValueSelectors" ],
"freeValue" : true,
"allowMultipleValues" : true,
"information" : "Lorem ipsum"
}
},
"insertable" : true,
"editable" : false,
"deletable" : false,
"formSearchHidden" : false
}
}
2.7.43. Mark the opportunity as won
POST |
/opportunities/{opportunity_id}/win |
Description
Mark the opportunity as won.
The new opportunity stage can only have the status 'WON'.
It is not possible to mark as won if the opportunity is archived.
DMF required:
-
DMF A20207: Api Crm / Opportunities / Mark The Opportunity As Won
-
DMF 010202: Prospecting / Opportunities / Modify
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
opportunity_id |
The id of the opportunity |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
winningArgument |
Arguments to win the opportunity WinningArgument |
X |
Responses
Code | Message | Datatype |
---|---|---|
204 |
The opportunity has been successfully marked as won |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"signatureDate" : "2020-01-23T04:56:07Z",
"comment" : "Lorem ipnum",
"stageId" : "5000152"
}
2.8. Other Third Party
2.8.1. Create an other third-party.
PUT |
/other-third-parties |
Description
Create an other third-party.
DMF required:
-
DMF A21201: Api Crm / Other Third Parties / Insert
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party |
The other third-party to create. OtherThirdParty |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
201 |
The other third-party has been successfully created |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "LAPO",
"legalName2" : "LAPO",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"type" : {
"id" : "5000123",
"code" : "AMOA",
"name" : "AMOA"
},
"monitor" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"monitorId" : "5000123",
"typeId" : "5000123",
"documentNumber" : "1203PL",
"siret" : "362 521 879 00034",
"siren" : "362 521 879",
"siteCode" : "Site 1",
"sector" : "Automotive",
"branch" : "Agency 1",
"classification" : "STD",
"comment" : "Lorem ipsum"
}
2.8.2. Delete an other third-party.
DELETE |
/other-third-parties/{other_third_party_id} |
Description
Delete an other third-party.
DMF required:
-
DMF A21203: Api Crm / Other Third Parties / Delete
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party_id |
The id of the other third party |
X |
null |
Responses
Code | Message | Datatype |
---|---|---|
204 |
Other third-party successfully deleted |
<<>> |
404 |
Not Found - There is no other third-party corresponding to the id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.8.3. Get an other third-party.
GET |
/other-third-parties/{other_third_party_id} |
Description
Get an other third-party.
DMF required:
-
DMF A21206: Api Crm / Other Third Parties / Info
-
DMF 020141: Sales / Customer / Show Affiliation Links Tab
-
DMF 020143: Sales / Customer / Show Management Links Tab
-
DMF 191517: Web Portal / Organizations & Contacts / Show Customer Business Links Tab
-
DMF 191519: Web Portal / Organizations & Contacts / Show Prospect Business Links Tab
-
DMF 191521: Web Portal / Organizations & Contacts / Show Customer Affiliation Links Tab
-
DMF 191523: Web Portal / Organizations & Contacts / Show Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party_id |
The id of the other third party |
X |
null |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Other third-party successfully loaded |
|
404 |
Not Found - There is no other third-party corresponding to the id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
2.8.4. Read other third-party with read options
POST |
/other-third-parties/{other_third_party_id}/read |
Description
Read other third-party with read options
DMF required:
-
DMF A21206: Api Crm / Other Third Parties / Info
-
DMF 020141: Sales / Customer / Show Affiliation Links Tab
-
DMF 020143: Sales / Customer / Show Management Links Tab
-
DMF 191517: Web Portal / Organizations & Contacts / Show Customer Business Links Tab
-
DMF 191519: Web Portal / Organizations & Contacts / Show Prospect Business Links Tab
-
DMF 191521: Web Portal / Organizations & Contacts / Show Customer Affiliation Links Tab
-
DMF 191523: Web Portal / Organizations & Contacts / Show Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party_id |
The id of the other third party |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
The read options to return other third-party OtherThirdPartyReadOption |
X |
Return Type
array[OtherThirdParty]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Other third party successfully loaded |
List[OtherThirdParty] |
404 |
Not Found -There is no other third-party corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.8.5. Search other third parties with search criteria.
POST |
/other-third-parties/search |
Description
Search other third parties with search criteria.
DMF required:
-
DMF A21204: Api Crm / Other Third Parties / Search
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (ID, name, etc…) OtherThirdPartyCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[OtherThirdParty]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Other third parties successfully loaded |
List[OtherThirdParty] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"monitorId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siren" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"typeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siret" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"branch" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"readOption" : {
"options" : [ "ADDRESS", "ADDRESS" ]
}
}
2.8.6. Update an other third-party.
POST |
/other-third-parties/{other_third_party_id} |
Description
Update an other third-party.
DMF required:
-
DMF A21202: Api Crm / Other Third Parties / Update
-
DMF 020142: Sales / Customer / Modify Affiliation Links Tab
-
DMF 020144: Sales / Customer / Modify Management Links Tab
-
DMF 191518: Web Portal / Organizations & Contacts / Modify Customer Business Links Tab
-
DMF 191520: Web Portal / Organizations & Contacts / Modify Prospect Business Links Tab
-
DMF 191522: Web Portal / Organizations & Contacts / Modify Customer Affiliation Links Tab
-
DMF 191524: Web Portal / Organizations & Contacts / Modify Prospect Affiliation Links Tab
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party_id |
The id of the other third party |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
other_third_party |
The other third-party to be updated. OtherThirdParty |
X |
Content Type
-
text/plain
Responses
Code | Message | Datatype |
---|---|---|
200 |
The other third-party has been successfully updated |
|
404 |
Not Found -There is no other third-party corresponding to this id |
<<>> |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"id" : "5000123",
"code" : "CA122",
"name" : "Akuiteo",
"legalName" : "LAPO",
"legalName2" : "LAPO",
"address" : {
"id" : "id",
"line1" : "221B Baker Street",
"line2" : "2nd Floor",
"line3" : "First door at your right",
"cedex" : "CEDEX 14",
"postalCode" : "69002",
"city" : "London",
"country" : "FR (for 'FRANCE')",
"countryName" : "FRANCE",
"department" : "75 (for 'PARIS')",
"geographicalDepartmentName" : "CENTRE VAL DE LOIRE",
"region" : "65 (for 'ILE DE FRANCE')",
"regionName" : "ILE DE FRANCE",
"phone" : "06 00 00 00 01",
"phone2" : "06 00 00 00 02",
"email" : "myemail@mail.com",
"mobilePhone" : "06 00 00 00 02",
"fax" : "04 00 00 00 07",
"webSite" : "mysite.com"
},
"type" : {
"id" : "5000123",
"code" : "AMOA",
"name" : "AMOA"
},
"monitor" : {
"id" : "5000123",
"code" : "CASH",
"name" : "DUPONT",
"firstName" : "Jean",
"action" : "{}"
},
"monitorId" : "5000123",
"typeId" : "5000123",
"documentNumber" : "1203PL",
"siret" : "362 521 879 00034",
"siren" : "362 521 879",
"siteCode" : "Site 1",
"sector" : "Automotive",
"branch" : "Agency 1",
"classification" : "STD",
"comment" : "Lorem ipsum"
}
2.9. Supplier Contacts
2.9.1. Read a contact related to a supplier
POST |
/suppliers/{supplier_id}/contacts/{contact_id}/read |
Description
Read a contact related to a supplier
DMF required:
-
DMF A21007: Api Crm / Contacts / Supplier Contacts Info
-
DMF 040106: Purchases / Suppliers / Contacts
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 160406: Tools / Contacts / Show History
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
supplier_id |
The id of the supplier |
X |
null |
|
contact_id |
The id of the contact |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
Read options for the returned contact ContactReadOption |
X |
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
The contact has been successfully loaded |
|
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.9.2. Read contacts related to a supplier
POST |
/suppliers/{supplier_id}/contacts/read |
Description
Read contacts related to a supplier
DMF required:
-
DMF A21007: Api Crm / Contacts / Supplier Contacts Info
-
DMF 040106: Purchases / Suppliers / Contacts
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
-
DMF 160406: Tools / Contacts / Show History
Parameters
Path Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
supplier_id |
The id of the supplier |
X |
null |
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
read_option |
Read options for the returned contact ContactReadOption |
- |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Contacts have been successfully loaded |
List[Contact] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"options" : [ "ADDRESS", "ADDRESS" ]
}
2.9.3. Search contacts related to a supplier
POST |
/suppliers/contacts/search |
Description
Search contacts related to a supplier
DMF required:
-
DMF A21008: Api Crm / Contacts / Search Supplier Contacts
-
DMF 160405: Tools / Contacts / Search
-
DMF 040106: Purchases / Suppliers / Contacts
-
DMF 191505: Web Portal / Organizations & Contacts / Show Contacts
Parameters
Body Parameter
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
criteria |
Criteria that you choose (ID, company, etc…) ContactCriteria |
X |
Query Parameters
Name | Description | Required | Default | Pattern |
---|---|---|---|---|
offset |
The index of first element |
- |
null |
|
limit |
The max number of elements |
- |
null |
Return Type
array[Contact]
Content Type
-
application/json
Responses
Code | Message | Datatype |
---|---|---|
200 |
Contacts have been successfully loaded |
List[Contact] |
400 |
Bad Request - Standard failure code. This code is used when no other specific code applies. |
|
401 |
Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource. |
|
402 |
Request Failed - The parameters were valid but the request failed. |
|
403 |
Forbidden - The user does not have permissions to perform the request. |
|
404 |
Not Found - The requested resource does not exist. |
|
405 |
Method Not Allowed - The HTTP method requested on the resource is not supported, for example if you make a POST request on a resource where POST does not make sense or is not implemented. |
|
406 |
Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request. |
|
500 |
Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end. |
Samples
Body parameter
Click to expand
{
"noLongerWorkForSupplierCompany" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customData" : {
"key" : {
"includeNullResults" : false,
"value" : "{}",
"operator" : "IS"
}
},
"readOption" : {
"options" : [ "ADDRESS", "ADDRESS" ]
},
"customerType" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"modificationTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"function" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"disappeared" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"createdTime" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"modificationById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"id" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"tag" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"keyword" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"createdById" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerValidity" : {
"date" : "2000-01-23T04:56:07.000+00:00"
},
"supplierEntityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierDivisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteHelpdeskContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"recipientOfQuotation" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"firstName" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteSalesContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"mobilePhone" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"phone" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"name" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteFinanceContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerDivisionId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"code" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"lastTracking" : {
"operator" : "IS",
"value" : "2000-06-21T04:56:07.000+00:00",
"includeNullResults" : false,
"withTime" : false
},
"siteHelpdeskVIPContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerEntityId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"noLongerWorkForCustomerCompany" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierTitle" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierCode" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteDecisionMaker" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteEmail" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSubcategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteSalesContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteHelpdeskMainContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerSalesmanId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierPosition" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"email" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteDecisionMaker" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierName" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"supplierSiteEmail" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteTrainingContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"customerSubcategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"employeeId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"customerIncludeClosed" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteHelpdeskBlacklisted" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"siteFinancialContact" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierCategoryId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"service" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
},
"siteIntern" : {
"operator" : "IS",
"value" : false,
"includeNullResults" : false
},
"supplierSiteId" : {
"operator" : "IS",
"value" : "Abcd",
"includeNullResults" : false,
"wildcards" : "*"
}
}
3. Models
3.2. AccountingJournal
Accounting journal
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The accounting journal code |
|||
endDate |
End date of. Cannot be set directly please use the //TBD path. |
date |
||
excludedByDefault |
Excluded by default from accounting reports (trial balance, General ledger, accounting entries seach) |
|||
id |
Id in database |
|||
miscellaneousTransactionsProhibited |
Miscellaneous transactions Prohibited |
|||
name |
The accounting journal name |
|||
startDate |
Accounting journal start date |
date |
3.3. AccountingJournalBase
Accounting journal
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The accounting journal code |
|||
id |
Id in database |
|||
name |
The accounting journal name |
3.4. AccountingParameters
Accounting Parameters
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountingNumber |
Customer accounting number |
|||
currencyCode |
The code of the currency |
|||
customerId |
The ID of the customer |
|||
deferredIncomeReconciliationAccountNumber |
Deferred Income Reconciliation Account Number. |
|||
group |
Set as true if the customer is part of a group. |
|||
intercoCode |
The interco code of the customer |
|||
internalReconciliationAccountNumber |
Internal Reconciliation Account Number |
|||
internalType |
Customer Internal type. This field is set by default with the value EXTERNAL. |
|||
isDematerializedInvoices |
Set as true if invoices are dematerialized for this customer. |
|||
isFactoringSupported |
Set as true if factoring is supported for this customer. |
|||
isNotBooked |
Set as true if the customer is not to be booked. Set as false by default. |
|||
journalCode |
The code of the accounting journal |
|||
mainReconciliationAccountNumber |
The main reconciliation account number. |
|||
reconciliationAccount2Number |
The second reconciliation account number. |
|||
reconciliationAccount3Number |
The third reconciliation account number. |
|||
reconciliationAccount4Number |
The fourth reconciliation account number. |
|||
reconciliationAccount5Number |
The fifth reconciliation account number. |
|||
siaControlNumber |
The sales invoice accruals account number (FAE). |
3.5. Action
Verb of the request to specify which type of action you will send.
Type : enum (ADD, UPDATE, REMOVE)
3.6. ActionCode2
Details about the second action code
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the second action code |
|||
id |
Id in database |
|||
name |
Name of the action code |
3.7. ActionCodeBase
Details about the action code
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Name of the action code |
3.8. ActionManagementObjectLine
ActionManagementObjectLine
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
amountTotal |
Total amount expressed in company currency |
double |
||
amountTotalCurrency |
Total amount in the currency |
double |
||
id |
Id in database |
|||
managementObjectId |
Id of the management object |
|||
name |
Name of the line |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
quantity |
Quantity of the product |
double |
||
rankNumber |
Rank number of the line |
double |
||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
unitPrice |
Unit price of the product expressed in company currency |
double |
||
unitPriceCurrency |
Unit price of the product expressed in company currency. The value in this field is not stored. Upon retrieval, it is calculated based on the rate in effect on the date of the management sales object. |
double |
3.9. ActiveModule
List of active modules
Note: MISSION represents the Variable Item
Type : enum (EXPENSE_REPORTS, TIMES_RECORDING, SCHEDULE, QUOTATION, QUOTATION_SIGNED_ORDERED_UNSIGNED, SALES_ORDER, INVOICE, SALES_BILLING_TABLE, DELIVERY, PURCHASE_ORDER, QUOTE, RECEPTION, PURCHASE_INVOICE, PURCHASE_BILLING_TABLE, HELP_DESK, PRODUCTION, MISSION, QUOTE_SIGNED_ORDERED_UNSIGNED, SALES_CREDIT_NOTE, PURCHASE_CREDIT_NOTE, INVENTORY_MOVEMENTS, FLOWS, ACCOUNTING, CASH_FLOW, OPERATING_ACCOUNT, PAYMENT_MONTH)
3.10. Activity
Division
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the activity |
|||
departmentId |
ID of the department |
|||
endDate |
End of validity |
date-time |
||
id |
Id in database |
|||
name |
Name of the activity |
3.11. ActivityBase
Division
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the activity |
|||
id |
Id in database |
|||
name |
Name of the activity |
3.12. AdditionalFreeFields
Free fields of a Management Object Line
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
field1 |
Free field 1 |
|||
field2 |
Free field 2 |
|||
field3 |
Free field 3 |
|||
field4 |
Free field 4 |
|||
field5 |
Free field 5 |
3.13. AdditionalFreeFieldsCriteria
Search criteria for additional free fields
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
additionalFreeField1 |
||||
additionalFreeField2 |
||||
additionalFreeField3 |
||||
additionalFreeField4 |
||||
additionalFreeField5 |
3.14. Address
Details about the address
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
cedex |
Special number assigned to a company by the French postal code |
|||
city |
City of the address |
|||
country |
Country code of the address in the database |
|||
countryName |
Country name of the address |
|||
department |
Geographical department code of the address in the database |
|||
Email of the address |
||||
fax |
Fax of the address |
|||
geographicalDepartmentName |
Name of the geographical department for the address |
|||
id (Deprecated) |
Id in database |
|||
line1 |
First line of the address |
|||
line2 |
Second line of the address |
|||
line3 |
Third line of the address |
|||
mobilePhone |
Mobile Phone of the address |
|||
phone |
Phone of the address |
|||
phone2 |
Second phone of the address |
|||
postalCode |
Postal code of the city |
|||
region |
Region code of the address in the database |
|||
regionName |
Region name of the address |
|||
webSite |
Web Site of the address |
3.15. Alert
Alert message
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
level |
Level of the alert |
Enum: ERROR, WARNING, INFO, ERROR, WARNING, INFO |
||
message |
Message of the alert |
3.18. AnalysisResult
Analysis result consisting of a value, a date and a set of analysis groups
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
date |
Aggregate date of the analysis (see dateLike) |
date-time |
||
group |
Map of [object] |
All analysis groups |
||
value |
Aggregate value of the analysis |
double |
3.19. ApplicationControlBase
Application control
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the application control base. |
|||
id |
Id in database |
|||
info1 |
The first information about the application control base. |
|||
info2 |
The second information about the application control base. |
|||
info3 |
The third information about the application control base. |
|||
info4 |
The fourth information about the application control base. |
|||
info5 |
The fifth information about the application control base. |
3.20. ApprovalManagementObject
Information on the approval of a management object (pièce de gestion)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
afterTaxAmount |
After-Tax amount expressed in company currency |
double |
||
approvalDate |
Date of approval |
date-time |
||
approvalState |
State of approval |
|||
changeTracking |
||||
companyCode |
The company code |
|||
companyId |
ID of the company |
|||
currency |
Currency used in the management object |
|||
currencyCode |
Code of the currency used in the management object |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
date |
Date on the management object |
date-time |
||
description |
Description |
|||
entityCode (Deprecated) |
The entity code |
|||
id |
Id in database |
|||
name |
Name of the management object |
|||
number |
The number of the management object |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
preTaxAmount |
Pre-Tax Amount expressed in company currency |
double |
||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
thirdPartyId |
The Id of the third-party |
|||
type |
Example : QUOTATION |
3.21. ApprovalState
State of the Approval
Type : enum (NONE, TO_REQUEST, TO_APPROVE, REFUSED, APPROVED)
3.22. ArchiveArgument
Arguments to archive
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
comment |
Comment to describe the archiving reason |
|||
reasonId |
The ID of the archive reason. |
3.23. ArchiveReasonBase
Details about the reasons to archive
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the reason to archive |
|||
id |
Id in database |
|||
name |
Name of the reason to archive |
3.24. Assignment
Assignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customer |
Details about the customer |
|||
customerId |
ID of the customer |
|||
phase |
Details about the phase |
|||
phaseId |
ID of the phase |
|||
project |
Details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the task |
|||
projectTaskId |
ID of the project |
|||
subPhase |
Details about the sub-phase |
|||
subPhaseId |
ID of the sub-phase |
3.25. AssignmentCriteria
Criteria used to get more details about an assignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activityId |
Ident of the activity |
|||
allCompanies |
Set as True if you don't want to filter on companies |
|||
companyId |
Ident of the company |
|||
countAssignmentType |
Define the node type when counting an assignment tree. Used like a query parameter limit. |
|||
customerId |
Ident of the customer |
|||
departmentId |
Ident of the department |
|||
divisionGroupId |
Ident of the division group |
|||
divisionId |
Ident of the division |
|||
employeeId |
ID of the employee |
|||
employeeIdScheduled |
List of [string] |
Ids of employees for which the project has schedules |
||
employeePartitioning |
Set as True if you want to apply the partitioning by employee |
|||
entityId |
Ident of the entity |
|||
ignoreProjectAllCustomer |
Set as True if you want to ignore all customer projects |
|||
lowerAssignmentType |
Define the leaf node type when searching an assignment tree. If not set, default leaf node type is SUBPHASE or PROJECT_TASK according to the selected ActiveModule. |
|||
mainCustomer |
Set as True if you want to filter only main customers |
|||
phaseCode |
Code of the phase |
|||
phaseId |
Ident of the phase |
|||
projectCategorieId |
Ident of the project category |
|||
projectClosed |
Set as True if you want to include closed projects |
|||
projectEmployeeLinkedId |
Ids of employees linked to the project (Include projects with no employee linked) |
|||
projectFilterType |
Filter on project (may override some other clauses like divisionId or entityId) |
|||
projectFinancialManagerId |
Ident of the project financial manager |
|||
projectGroupCode |
Code of the project group |
|||
projectId |
Ident of the project (equivalent to the code of the project) |
|||
projectInternal |
Set as True if you want to include internal projects |
|||
projectManagerId |
Ident of the project manager |
|||
projectOnLeave |
Set as True if you want to include leave projects |
|||
projectProductionManagerId |
Ident of the project production manager |
|||
projectSalesManagerId |
Ident of the project sales manager |
|||
projectStateCode |
Code of the projectState |
|||
projectSubCategorieId |
Ident of the sub-category |
|||
projectSubcategorieLevel2Id |
Ident of the sub-category level 2 |
|||
projectTaskEmployeeLinkedId |
Ids of employees linked to the project task (Include project tasks with no employee linked) |
|||
projectTaskId |
Ident of the task |
|||
referentialDate |
Start referential date. If the field is not filled in, it take today's date by default |
date-time |
||
referentialDateEnd |
End referential date. This date must be after the referentialDate. |
date-time |
||
scheduled |
Assignment with schedules over the period (see referentialDate) |
|||
subPhaseCode |
Code of the sub-phase |
|||
subPhaseId |
Ident of the sub-phase |
|||
tag |
You can fill in the code or name of the assignment in this field |
|||
tagIdScheduled |
List of [string] |
Ids of tag for which the project has scheduled tags |
||
upperAssignmentType |
Define the root node type when searching an assignment tree. If this field is not filled in, default root node type is CUSTOMER. |
|||
yearId |
Ident of the year |
3.26. AssignmentIndicator
The project indicator.
By default, this field contains the value 'SINGLE_PROJECT_MONO_PHASE'.
If this field is on 'SINGLE_PROJECT_MONO_PHASE', it is mandatory to enter the projet_id, phase_id and subphase_id in the quotation.
If this field is on 'SINGLE_PROJECT_MULTI_PHASES', it is mandatory to enter the project_id in the quotation and it is not possible to enter the phase_id and subphase_id in the quotation but only in the quotation line.
If this field is on 'MULTI_PROJECTS', it is not possible to enter the projet_id, phase_id and subphase_id in the quotation but it is mandatory to write them in the quotation line.
Type : enum (SINGLE_PROJECT_MONO_PHASE, SINGLE_PROJECT_MULTI_PHASES, MULTI_PROJECTS)
3.27. AssignmentNode
Assignment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
additionalProperties |
Map of [string] |
Additonal functional properties available on this node |
||
assignments |
List of AssignmentNode |
Assignment node's child |
||
code |
Code of the assignment |
|||
description |
Short description of the assignment |
|||
id |
Id in database |
|||
longDescription |
Long description of the assignment |
|||
parentId |
ID of the parent |
|||
parentType |
Details about the parent |
|||
selectable |
Return True if the assignment node can be selected |
|||
type |
Details about the assignment type |
3.28. AssignmentReferential
Assignment referential
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activity |
Details about the activity |
|||
category |
Details about the category |
|||
company |
Details about the company |
|||
customer |
Details about the customer |
|||
department |
Details about the departement |
|||
division |
Details about the divison |
|||
divisionGroup |
Details about the division grouping |
|||
entity |
Details about the entity |
|||
id |
Id in database |
|||
phase |
Details about the phase |
|||
project |
Details about the project |
|||
projectGroup |
Details about the project group |
|||
projectManager |
Details about the project manager |
|||
projectProductionManager |
Details about the production manager |
|||
projectState |
Details about the project state code |
|||
projectTask |
Details about the task |
|||
subCategory |
Details about the sub-category |
|||
subCategoryLevel2 |
Details about the second sub-category |
|||
subPhase |
Details about the sub-phase |
|||
year |
Details about the year |
3.29. AssignmentSubType
Subtype of Assignment
Type : enum (PROJECT_GROUP, DEPARTMENT, ACTIVITY, CATEGORY, SUB_CATEGORY, SUB_CATEGORY_2, PROJECT_STATE, YEAR)
3.30. AssignmentType
Type of Assignment
Type : enum (COMPANY, DIVISION_GROUP, DIVISION, ENTITY, CUSTOMER, PROJECT, PHASE, SUBPHASE, PROJECT_TASK)
3.31. AttachFileLocation
If ATTACH, the file will be added as an attachement. If BODY the report will be integrated into the email's body.
Type : enum (BODY, ATTACH)
3.32. Avatar
Entity avatar
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
content |
The base64-encoded binary content or URL of the entity's avatar image. |
3.33. AxeCriteria
Standard criteria for filtering data from the analysis
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
axeType |
X |
Unused (technical field) |
||
customerAccountManagerId |
Ident of customer's account manager |
|||
customerAccountManagerSupervisorId |
Ident of customer's account manager supervisor |
|||
customerCountryId |
Ident of customer's country |
|||
customerFamilyId |
Ident of the customer's project category |
|||
customerGrouping1 |
Customer's grouping |
|||
customerGrouping2 |
Customer's grouping 2 |
|||
customerId |
Ident of customer |
|||
customerRegionId |
Ident of customer's address region |
|||
customerSalesmanId |
Ident of customer's salesman |
|||
customerSalesmanSupervisorId |
Ident of customer's salesman supervisor |
|||
customerSectorId |
Ident of customer's sector |
|||
customerState |
Customer's state |
|||
customerSubFamilyId |
Ident of the customer's project subcategory |
|||
groupCustomer |
Group of companies of the customer |
|||
phaseId |
Ident of the phase |
|||
projectActivityId |
||||
projectCampaignId |
Ident of the project's compaign |
|||
projectCompanyCode |
Code of the project's company |
|||
projectDepartmentId |
Ident of the project's department |
|||
projectDivisionGroupId |
Ident of the project's division group |
|||
projectDivisionId |
Ident of the project's division |
|||
projectEstablishmentId |
||||
projectFamilyId |
Ident of the project's category |
|||
projectFinancialManagerId |
Ident of the project's financial manager |
|||
projectId |
Ident of the project (equivalent to the code of the project) |
|||
projectManagerId |
Ident of the project manager of the project |
|||
projectMarketId |
Ident of project group of the project |
|||
projectProductionManagerId |
Ident of the project's product manager |
|||
projectSalesManagerId |
Ident of the project's sales manager |
|||
projectState |
State of project |
|||
projectSubFamily2Id |
Ident of the project's sub-category level 2 |
|||
projectSubFamilyId |
Ident of the project's sub-category |
|||
projectVintageId |
Ident of the year (vintage) of the project |
|||
prospect |
True is customer is a prospect |
|||
subPhaseId |
Ident of the sub-phase |
3.34. AxeGroupsType
Standard analysis axis
Type : enum (PROJECT_ID, PROJECT_NAME, PROJECT_COMPANY_CODE, PROJECT_DIVISION_GROUP_ID, PROJECT_DIVISION_GROUP_NAME, PROJECT_DIVISION_ID, PROJECT_DIVISION_NAME, PROJECT_ESTABLISHMENT_ID, PROJECT_ESTABLISHMENT_NAME, PROJECT_ACTIVITY_ID, PROJECT_ACTIVITY_NAME, PROJECT_DEPARTMENT_ID, PROJECT_DEPARTMENT_NAME, PROJECT_FAMILY_ID, PROJECT_FAMILY_CODE, PROJECT_SUB_FAMILY_ID, PROJECT_SUB_FAMILY_CODE, PROJECT_SUB_FAMILY2_ID, PROJECT_SUB_FAMILY2_CODE, PROJECT_VINTAGE_ID, PROJECT_VINTAGE_CODE, PROJECT_MANAGER_ID, PROJECT_MANAGER_CODE, PROJECT_SALES_MANAGER_ID, PROJECT_SALES_MANAGER_CODE, PROJECT_FINANCIAL_MANAGER_ID, PROJECT_FINANCIAL_MANAGER_CODE, PROJECT_PRODUCTION_MANAGER_ID, PROJECT_PRODUCTION_MANAGER_CODE, PROJECT_CAMPAIGN_ID, PROJECT_CAMPAIGN_CODE, PROJECT_STATE, PROJECT_MARKET_ID, PROJECT_MARKET_CODE, PROJECT_MARKET_NAME, PHASE_ID, PHASE_CODE, PHASE_NAME, SUB_PHASE_ID, SUB_PHASE_CODE, SUB_PHASE_NAME, CUSTOMER_ID, CUSTOMER_CODE, CUSTOMER_NAME, CUSTOMER_FAMILY_ID, CUSTOMER_FAMILY_CODE, CUSTOMER_SUB_FAMILY_ID, CUSTOMER_SUB_FAMILY_CODE, CUSTOMER_GROUPING_1, CUSTOMER_GROUPING_2, CUSTOMER_SECTOR_ID, CUSTOMER_SECTOR_CODE, CUSTOMER_STATE, CUSTOMER_COUNTRY_ID, CUSTOMER_COUNTRY_NAME, CUSTOMER_COUNTRY_CODE, CUSTOMER_REGION_ID, CUSTOMER_REGION_CODE, CUSTOMER_ACCOUNT_MANAGER_ID, CUSTOMER_ACCOUNT_MANAGER_CODE, CUSTOMER_SALES_MAN_ID, CUSTOMER_SALES_MAN_CODE, CUSTOMER_ACCOUNT_MANAGER_SUPERVISOR_ID, CUSTOMER_ACCOUNT_MANAGER_SUPERVISOR_CODE, CUSTOMER_SALES_MAN_SUPERVISOR_ID, CUSTOMER_SALES_MAN_SUPERVISOR_CODE, CUSTOMER_PROSPECT, CUSTOMER_OPENING_DATE, CUSTOMER_PROFESSION, CUSTOMER_PROFESSIONAL_CATEGORY)
3.35. BIC
Details about the BIC of a people
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
bank |
Code of the bank - 4 digits max |
|||
branch |
Code of the optional branch - 3 digits max |
|||
country |
Country code of the address in the database |
|||
location |
Code of the location - 2 digits max |
3.36. BankDetails
Details about the bank of a people
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountNumber |
Account number - 11 digits max |
|||
counter |
Code of the counter - 5 digits max |
|||
domiciliation |
Bank domiciliation |
|||
entity |
Code of the bank - 5 digits max |
|||
key |
Key of the RIB - 2 digits max |
3.37. BankType
Type of the bank (nature de banque) for international bank detail
Type : enum (BIC, ABA, NOT_DEFINED)
3.38. BankingInformation
Banking informations
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
id |
ID in database |
|||
noneSepa |
Details about the none SEPA banking information (exclusive with the sepa field) |
|||
sepa |
Details about the SEPA banking information (exclusive with the noneSepa field) |
|||
statusChangeArgument |
Argument to change the status of a banking information |
|||
statusChangeDate |
This field is automatically set with the validation date when the Banking Information is validated or with the rejection date when the Banking Information is refused. |
date-time |
||
type |
The type of banking information used to indicate whether the data refers to SEPA details (with BIC, IBAN, and bankDetails) or international bank details. |
|||
validator |
Details about the employee who will validate banking data. |
|||
validatorId |
Set as true if this rule for validating banking data is applied to employees. |
3.39. BankingInformationStatus
The status of the Banking Information
Type : enum (VALIDATED, TO_VALIDATE, REFUSED)
3.40. BankingInformationStatusParamHolder
Argument to change the status of a banking information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
comment |
Comment about the change status |
|||
status |
X |
The status of the Banking Information |
3.41. BankingInformationSupplierType
Supplier type of banking information
Type : enum (ALL, INTERNAL, EXTERNAL, VIRTUAL)
3.42. BankingInformationType
List of banking information type
Type : enum (SEPA, INTERNATIONAL_BANK)
3.43. BaseRateBase
Basic information for rates.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
ID in database of base rate |
|||
name |
The description of the base rate |
3.44. BatchArchiveArgumentParamHolder
The parameters for archiving the quotations
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
archiveArgument |
The argument for archiving |
|||
ids |
List of [string] |
IDs of the elements to archive |
3.45. BatchParameter
Parameter used to manage batch operations
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
ids |
List of [string] |
Ids of the objects |
3.46. BatchUpdateCustomDataParamHolder
All the information to perform the batch update on custom data
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customData |
X |
Map of CustomData |
All custom data to update |
|
ids |
X |
List of [string] |
List of id on which the update must be done |
3.47. BatchUpdateSalesMObjectLines
Object for batch updating certain fields in sales management object lines
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
billingMode |
Billing mode for the line |
|||
ids |
List of [string] |
Ids of the objects |
||
notPublishable |
Set to “true” if the line is not to be shown when the sales management object containing said line (quotation, invoice, etc.) is published. |
|||
resourceId |
Id of the resource allocated to complete the task |
3.48. BillingMode
Billing mode of a product or sales line
Type : enum (TIME_BASED, FIXED_PRICE, RECURRENT, PRODUCTION_TO_BE_BILLED)
3.49. BlockedType
Type of object to be tested in the customer blocking control
Type : enum (OPPORTUNITY, QUOTATION, DELIVERY, PURCHASE_BILLING_TABLE, SALES_INVOICE, PROJECT, TRAINING_OPPORTUNITY, REGISTRATION_FORM, CUSTOMER_CONTRAT)
3.50. BlockingInformation
Blocking information (Customer, …)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
alerted |
Operation is not blocked for this customer but has alerts. |
|||
blocked |
X |
Operation is blocked for this customer. |
||
reason |
Reason why customer is blocked. |
3.51. BlockingParamHolder
Blocking information needed to apply checking
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amount |
X |
Amount to be checked |
double |
|
objectId |
Object tested (only in modifcation) |
|||
objectType |
X |
Type of parameterized object tested |
3.52. BooleanParamHolder
Parameter value (Boolean).
See the documentation of the calling API body for further information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
value |
Value |
3.53. BusinessEntity
BusinessEntity manages project-related information, including its phases and sub-phases.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
3.54. BusinessReferential
BusinessReferential manages project-related information, including phases, sub-phases, and associated project tasks.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
3.55. Calendar
Calendar
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the calendar. |
|||
daysNotWorked |
List of [integer] |
Days not worked (ISO day of the week with 1 being Monday and 7 being Sunday) |
int32 |
|
default |
Set as 'true' to use this calendar by default. |
|||
holidays |
List of Holiday |
Details about list of holidays. |
||
id |
Id in database |
|||
name |
The name of the calendar. |
3.56. CalendarEvent
CalendarEvent
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
actionCode |
Details about the action verb |
|||
actionCodeId |
ID of the action code |
|||
changeTracking |
Date and user in case of creation and modification |
|||
comment |
Comment of the calendar event |
|||
customer |
Details about the customer |
|||
customerId |
ID of the customer |
|||
date |
Date of the calendar event |
date-time |
||
duration |
Duration of the calendar event |
double |
||
durations |
Duration in different units |
|||
employee |
Details about the employee |
|||
employeeId |
ID of the employee |
|||
guid |
Global identifier of the calendar event (for mobile version only) |
|||
id |
ID of the calendar event |
|||
location |
Location of the calendar event |
|||
phase |
Details about the phase |
|||
phaseId |
ID of the phase |
|||
project |
Details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the task |
|||
projectTaskId |
ID of the project |
|||
subPhase |
Details about the sub-phase |
|||
subPhaseId |
ID of the sub-phase |
|||
taskId |
Helpdesk's task ident |
|||
type |
Type of the calendar event |
|||
unit |
Details about the unit of duration |
|||
validated |
Return True if the calendar event is validated |
3.57. Campaign
Marketing campaign
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Creation and modification date and user |
|||
code |
The code of the campaign. |
|||
companyId |
ID of the company |
|||
description |
Description of the campaign. |
|||
endDate |
The end date of the campaign. |
date-time |
||
id |
ID in database |
|||
manager |
Details about the manager assigned to the campaign. |
|||
managerId |
ID of the manager assigned to the campaign. |
|||
name |
The name of the campaign. |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase. |
|||
project |
All details about the project. |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
startDate |
The start date of the campaign. |
date-time |
||
subPhase |
Details about the sub-phase. |
|||
subPhaseId |
ID of the sub-phase. |
|||
targetId |
ID of the campaign’s target. |
|||
typeId |
ID of the campaign type. |
3.58. CampaignBase
Marketing campaign
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the campaign. |
|||
id |
ID in database |
|||
name |
The name of the campaign. |
3.59. CampaignCriteria
Criteria used to get more details about the campaign.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Change tracking criteria |
|||
code |
Code of the campaign |
|||
companyId |
Id of the company |
|||
description |
Description of the campaign |
|||
endDate |
Clause about the end date of the campaign. |
|||
id |
Id of the campaign |
|||
managerId |
ID of the manage assigned to the campaign. |
|||
name |
Name of the campaign |
|||
phaseId |
ID of the phase. |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
readOption |
Options for retrieving extra information concerning the campaign |
|||
startDate |
Clause about the start date of the campaign. |
|||
subPhaseId |
ID of the sub-phase. |
|||
tag |
You can fill in the code or name of the campaign in this field |
|||
targetId |
ID of the campaign’s target. |
|||
typeId |
ID of the campaign type. |
|||
validity |
Clause about validity of the campaign |
3.60. CampaignReadOption
ReadOption of a Campaign
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the campaign |
Enum: MANAGER, PROJECT, PHASE, SUB_PHASE, CHANGE_TRACKING |
3.61. Category
Category
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the category |
|||
companyCode |
The code of the company |
|||
endDate |
End date for using the category of the product |
date |
||
grouping |
Grouping field for category |
|||
id |
Id in database |
|||
name |
The name of the category |
|||
ranking |
Category ranking in help lists |
int32 |
||
type |
Type of the category. |
3.62. CategoryCriteria
Criteria used on Category when doing a Category search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the category |
|||
companyId |
Company of the category |
|||
endDate |
End date of validity for the category |
|||
grouping |
Grouping field of the category |
|||
id |
Ident of the category |
|||
name |
Name of the category |
|||
tag |
You can fill in the code or name of the category in this field |
|||
type |
Type of the category |
|||
validity |
Details about the validity of the category |
3.63. CategoryEvent
Category of an Event
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the category |
|||
creatableEverywhere |
Set as 'true' to allow creation across all platforms, including the CRM portal. If this field is set to 'false', creation will not be possible on the CRM portal. |
|||
displayableEverywhere |
Set as 'true' to allow display across all platforms, including the CRM portal. If this field is set to “false”, categories that can be displayed only on the CRM will not be returned. |
|||
endCustomData |
Custom data display end index. |
int32 |
||
icon |
Icon used on display |
|||
id |
Id in database |
|||
name |
Name of the category |
|||
nbColsCustomData |
Number of custom data columns to display. |
int32 |
||
obsolete |
Set as true if the type is obsolete. |
|||
reply |
Set as true if a reply is needed. |
|||
startCustomData |
Custom data display start index. |
int32 |
||
typeEvent |
Type of the Event. |
3.64. CategoryEventCriteria
Criteria used on Event Service when doing a Event Dashboard search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the category event |
|||
companyCode |
Code of the company |
|||
creatableEverywhere |
Set as 'true' to return items that can be created across all platforms, including the CRM portal. |
|||
displayableEverywhere |
Set as 'true' to return the full list of event categories. |
|||
eventTypes |
List of TypeEvent |
Type of the event |
||
id |
Ident of the category event |
|||
name |
Name of the category event |
|||
obsolete |
Set as 'true' to return only the valid event categories. |
|||
tag |
You can fill in the code or name of the category in this field |
3.65. CategoryType
Type of category
Type : enum (SALES_ITEM, PURCHASE_ITEM, PROJECT_CATEGORY, PROJECT_SUB_CATEGORY, PROJECT_SUB_CATEGORY_LEVEL2, EMPLOYEE_CATEGORY_LEVEL1, EMPLOYEE_CATEGORY_LEVEL2, EMPLOYEE_CATEGORY_LEVEL3, CUSTOMER, TECHNICAL_DOMAIN, OTHER_THIRDPARTIES, WORKGROUP, VERSION, CUSTOMERS_CONTRACTS, RETAILER_CONTRACTS, DOCUMENT, TRAINING_ITEM, SUPPLIER, MAINTAINED_ITEM)
3.66. ChangeTracking
History of all changes made
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
createdBy |
Code of the creator (user) |
|||
createdById |
Id of the creator (user) |
|||
createdTime |
Creation Date |
date-time |
||
modificationBy |
Code of the user who did the modification |
|||
modificationById |
Id of the user who did the modification |
|||
modificationTime |
Date of the modification. |
date-time |
3.67. ChangeTrackingCriteria
Standard criteria for filtering data from the change tracking
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
createdById |
The ID of the user who created the object. |
|||
createdTime |
The date and time when the object was created. |
|||
updatedById |
The ID of the user who last updated the object. |
|||
updatedTime |
The date and time when the object was last updated. |
3.68. CheckbookBase
Customer checkbook base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
The name of the checkbook |
3.69. ChorusInvoiceStatus
Chorus status for e-invoices sent
Type : enum (DRAFT, SUBMITTED, IN_TRANSIT, AVAILABLE, COMPLETED, TO_BE_RECYCLED, SUSPENDED, REJECTED, SERVICE_RENDERED, MANDATED, AVAILABLE_FOR_ACCOUNTING, ACCOUNTED, PAYMENT_INITIATED)
3.70. ChorusServiceInformation
Chorus service information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
serviceCode |
Code of Chorus service |
|||
serviceName |
Name of Chorus service |
3.71. City
City
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
companyCode |
The code of the company linked to the city |
|||
country |
The country where the city is located |
|||
countryId |
Id of the country where the city is located |
|||
default |
Returns true if the city is the default city |
|||
department |
The department where the city is located |
|||
departmentId |
Id of the department where the city is located |
|||
id |
Id in database |
|||
latitude |
Latitude of the city |
|||
longitude |
Longitude of the city |
|||
name |
Name of the city |
|||
postcode |
Postcode of the city |
|||
regionId |
Id of the region |
3.72. Clause
Basic clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
The value you search |
3.73. ClauseBoolean
Boolean clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
The value you search. |
3.74. ClauseDate
String clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
The value you search. |
date-time |
|
withTime |
Whether or not the time part should be taken into account (false by default) |
3.75. ClauseDouble
Double clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
The value you search. |
3.76. ClauseOperation
Operation used by the clause
Type : enum (LIKE, NOT_LIKE, IS, IS_NOT, IN, NOT_IN, IS_NULL, IS_NOT_NULL, CLAUSES, GREATER_OR_EQUALS, GREATER, LOWER_OR_EQUALS, LOWER)
3.77. ClauseProbability
Probability clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
Value of the probability |
||
wildcards |
When using the LIKE operator, indicates which characters should be interpreted as wildcards ('*%_' by default) |
3.79. ClauseString
String clause type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeNullResults |
Set as true to include null results |
|||
operator |
X |
The operator for your operation. |
||
value |
X |
The value you search. |
||
wildcards |
When using the LIKE operator, indicates which characters should be interpreted as wildcards ('*%_' by default) |
3.80. ColorCodes
ColorCodes
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
color1 |
First color code |
|||
color2 |
Second color code |
|||
color3 |
Third color code |
3.81. Command
Command
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
endDate |
End of the command |
date-time |
||
error |
Error of the command |
|||
id |
The Id of the command |
|||
progress |
Progress of the command |
|||
result |
Result of the command |
|||
startDate |
Start of the command |
date-time |
||
status |
Status of the command |
Enum: STARTED, NOT_STARTED, FINISHED, UNKNOWN, ERROR, STARTED, NOT_STARTED, FINISHED, UNKNOWN, ERROR |
3.82. CommandProgress
Command progress status
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
current |
Current index of the progress |
|||
max |
Max index of the progress |
3.83. Company
Company (Société)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
address |
The company's main address |
|||
addressId |
The id of the company's main address |
|||
calendar |
Details of the calendar |
|||
calendarId |
ID of the calendar |
|||
code |
Code of the company |
|||
color |
Color attached to the company |
|||
currency |
Details about the currency |
|||
currencyId |
The currency id |
|||
id |
Id in database |
|||
legalName |
Legal name of the company |
|||
name |
Name of a company |
|||
siren |
SIREN number |
|||
siret |
SIRET number |
3.84. CompanyBase
Company
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the company |
|||
id |
Id in database |
|||
name |
Name of a company |
3.85. ComparisonOperator
Comparison operator
Type : enum (BEFORE, AFTER, EQUAL, BEFORE_EQUAL, AFTER_EQUAL)
3.87. ConditionOfPayment
The condition of payment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Payment code |
|||
day |
Day of the month on which the payment will be done |
double |
||
deadLine |
Number of days to carry out the payment |
|||
term |
Period of payment |
3.88. Contact
Contact
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
address |
Details about the address of the contact. |
|||
addressId (Deprecated) |
The id of the contact's address. |
|||
changeTracking |
Date and user in case of creation and modification |
|||
code |
The code of the contact. |
|||
comment |
All comments about the contact. |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
customerRelatedInformation |
List of CustomerRelatedInformation |
Details about the customers related. |
||
disappeared |
True if the contact has disappeared |
|||
disappearedOn |
Date on which the contact disappeared |
date-time |
||
Email of the contact |
||||
email2 |
Second Email of the contact |
|||
email2AddressNotKnown |
The Second Email address of the contact is not known |
|||
email2BlackListed |
The Seconde Email address of the contact is black listed |
|||
emailAddressNotKnown |
The Email address of the contact is not known |
|||
emailBlackListed |
The Email address of the contact is black listed |
|||
employee |
Employee related to this contact |
|||
employeeId |
ID of the employee related to this contact |
|||
entryDate |
Entry date of the contact |
date-time |
||
firstName |
The first name of the contact. |
|||
functionTitle |
Function title of the contact |
|||
id |
Id in database |
|||
keywords |
Keyword of the contact |
|||
lastTracking |
Date of the last tracking of the contact |
date-time |
||
maidenName |
The maiden name of the contact |
|||
markedForAnonymization |
Define if this contact is marked for anonymization |
|||
mobilePhone |
Mobile phone number of the contact |
|||
name |
The name of the contact. |
|||
phone |
Phone number of the contact |
|||
pictureId |
ID of the picture of the contact |
|||
position |
Position (also known as Function) of the contact in the company |
|||
recipientOfAllSitesDunning |
Define if this contact can be the recipient of dunning from all the sites to which he is linked. |
|||
recipientOfAllSitesInvoices |
Define if this contact can be the recipient of invoices from all the sites to which it is related. |
|||
recipientOfDeliveryNote |
Define if this contact can be the recipient of delivery note. |
|||
recipientOfDunning |
Define if this contact can be the recipient of dunning. |
|||
recipientOfPurchaseOrder |
Define if this contact can be the recipient of purchase order. |
|||
recipientOfQuotation |
Define if this contact can be the recipient of quotation. |
|||
recipientOfQuote |
Define if this contact can be the recipient of quote. |
|||
recipientOfReceipt |
Define if this contact can be the recipient of receipt. |
|||
recipientOfSalesInvoice |
Define if this contact can be the recipient of sales invoice. |
|||
recipientOfSalesOrder |
Define if this contact can be the recipient of sales order. |
|||
recipientOfTerms |
Define if this contact can be the recipient of terms. |
|||
service |
Service of the contact |
|||
sitesRelatedInformation |
List of SiteRelatedInformation |
Details about the sites related informations |
||
supplierSitesRelatedInformation |
List of SupplierSiteRelatedInformation |
Details about the supplier sites related informations |
||
suppliersRelatedInformation |
List of SupplierRelatedInformation |
Details about the suppliers related informations |
||
title |
Civility of the contact. |
|||
titleType |
Type of the title can be (UNKNOWN, NEUTRAL, MALE, FEMALE) |
3.89. ContactBase
Contact
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the contact. |
|||
firstName |
The first name of the contact. |
|||
id |
Id in database |
|||
name |
The name of the contact. |
3.90. ContactCriteria
Criteria used on Contact Service when doing a Contact search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the contact |
|||
createdById |
Creation of the contact |
|||
createdTime |
Created time of the contact |
|||
customData |
Map of Clause |
The custom data details (when present) |
||
customerCategoryId |
||||
customerDivisionId |
||||
customerEntityId |
||||
customerId |
Customer related to the contact |
|||
customerIncludeClosed (Deprecated) |
True if the search sould include Closed |
|||
customerSalesmanId |
||||
customerSubcategoryId |
||||
customerType |
||||
customerValidity |
Details about the validity of the customer contact |
|||
disappeared |
Set as 'true' to return a contact that disappeared |
|||
Email of the contact |
||||
employeeId |
Employe related to the contact |
|||
firstName |
First name of the contact |
|||
function |
Function of the contact |
|||
id |
Ident of the contact |
|||
keyword |
Keyword of the contact |
|||
lastTracking |
Last tracking of the contact |
|||
mobilePhone |
Mobile phone number of the contact |
|||
modificationById |
Last modification of the contact |
|||
modificationTime |
Modification time of the contact |
|||
name |
Name of the contact |
|||
noLongerWorkForCustomerCompany |
Set as 'true' to indicate that a contact no longer works for the customer's company. |
|||
noLongerWorkForSupplierCompany |
Set as 'true' to indicate that a contact no longer works for the supplier's company. |
|||
phone |
Phone number of the contact |
|||
readOption |
Options for retrieving extra information concerning the contact |
|||
recipientOfQuotation |
True if the contact can be the recipient of quotation. |
|||
service |
Service of the contact |
|||
siteDecisionMaker |
True if the Site is a decision maker |
|||
siteEmail |
Email of the contact within one of its site related |
|||
siteFinancialContact |
True if the Site is a financial contact |
|||
siteHelpdeskBlacklisted |
True if the Site is blacklisted by the helpdesk |
|||
siteHelpdeskContact |
True if the Site is a help desk contact |
|||
siteHelpdeskMainContact |
True if the Site is the help desk main contact |
|||
siteHelpdeskVIPContact |
True if the Site is a help VIP contact |
|||
siteId |
Site related to the contact |
|||
siteIntern |
True if the contact of the Site is an intern |
|||
siteMainContact |
True if the Site should be a main contact |
|||
siteSalesContact |
True if the Site is a sales contact |
|||
siteTrainingContact |
True if the Site is in training |
|||
supplierCategoryId |
The ID of the category of the Supplier related to the contact |
|||
supplierCode |
The code of the Supplier related to the contact |
|||
supplierDivisionId |
The ID of the division of the Supplier related to the contact |
|||
supplierEntityId |
The ID of the entity of the Supplier related to the contact |
|||
supplierId |
The ID of the Supplier related to the Contact |
|||
supplierName |
The name of the Supplier related to the contact |
|||
supplierPosition |
The position of the Supplier related to the contact |
|||
supplierSiteDecisionMaker |
True if the Supplier site should be a decision maker |
|||
supplierSiteEmail |
The email of the Supplier site related to the contact |
|||
supplierSiteFinanceContact |
True if the Supplier site should be a financial contact |
|||
supplierSiteId |
The ID of the Supplier site related to the contact |
|||
supplierSiteMainContact |
True if the Supplier site should be a main contact |
|||
supplierSiteSalesContact |
True if the Supplier site should be a sales contact |
|||
supplierSubcategoryId |
The ID of the sub category of the Supplier related to the contact |
|||
supplierTitle |
The title of the Supplier related to the contact |
|||
tag |
You can use this clause to do a text search on the code, first name and last name |
3.91. ContactReadOption
Options used to get additional information when doing a contact's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the contact |
Enum: ADDRESS, EMPLOYEE, SITES, SITES_INFORMATIONS, CUSTOMER_INFORMATIONS, CHANGE_TRACKING, CUSTOM_DATA, FORM_CONFIG, SUPPLIERS_INFORMATIONS, SUPPLIER_SITES_INFORMATIONS, SUPPLIERS_INFORMATIONS_DETAILS, SUPPLIER_SITES_INFORMATIONS_DETAILS, SITES_INFORMATIONS_MANAGER |
3.92. ContractBase
Contracts
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountingJournal |
Details of the accounting journal |
|||
accountingJournalId |
ID of Accounting Journal |
|||
afterTaxAmount |
After-Tax amount expressed in company currency |
double |
||
afterTaxAmountCurrency |
After-Tax amount in the currency |
double |
||
approvalDate |
Date of approval |
date-time |
||
approvalState |
State of approval |
|||
assignmentIndicator |
Specifies the type of project and phase: mono project and mono phase, mono project and multi phase, or multi project. |
|||
changeTracking |
||||
code |
Code of the contract |
|||
companyCode |
The company code |
|||
companyId |
ID of the company |
|||
conditionOfPayment |
||||
currency |
Currency used in the management object |
|||
currencyCode |
Code of the currency used in the management object |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
date |
Date on the management object |
date-time |
||
description |
Description |
|||
entityCode (Deprecated) |
The entity code |
|||
exchangeRate |
The currency's exchange rate |
double |
||
fiscalYear |
Belonging fiscal year |
|||
fiscalYearId |
Id of the fiscalYear |
|||
group |
Group object |
|||
id |
Id in database |
|||
internal |
Internal object |
|||
manager |
Details of the employee |
|||
managerId |
Id of the manager |
|||
methodOfPayment |
Method of payment |
|||
name |
Name of the management object |
|||
number |
The number of the management object |
|||
payment (Deprecated) |
Deprecated : Use conditionOfPayment instead |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
preTaxAmount |
Pre-Tax Amount expressed in company currency |
double |
||
preTaxAmountCurrency |
Pre-Tax Amount in the currency |
double |
||
pricingMethod |
Details about the pricing method. The method by which pricing is to be determined. |
|||
pricingMethodId |
The id of the pricing method |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
thirdPartyId |
The Id of the third-party |
|||
thirdPartyToBillId |
The Id of the third-party to bill |
|||
type |
Example : QUOTATION |
3.93. ContractServiceBase
Contact service (basic information)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the contract service. |
|||
id |
Id in database |
|||
name |
The name of the contract service. |
3.94. ControlBehavior
Field control behavior
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
additionalValueSelectors |
List of [string] |
Additional information related to the valueSelectors, providing context or supplementary details for the list of permissible values. |
||
allowMultipleValues |
Set as 'true' if the user is allowed to select multiple values from the valueSelectors. |
|||
defaultValue |
Default value of the field |
|||
enabled |
Return true if the field is enabled |
|||
freeValue |
Set as 'true' if the user is not restricted to the values listed in valueSelectors and can set a freely chosen value. |
|||
id |
ID of the control behavior |
|||
information |
Additional information of the field |
|||
property |
Name of the property controlled |
|||
required |
Return true if the field is required |
|||
valueSelectors |
List of [string] |
Customizable list of values for selection, allowing the restriction of permissible values in fields. |
||
visible |
Return true if the field is visible |
3.95. Country
Country
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
calendar |
The calendar of the company linked to the country |
|||
calendarId |
Id of the calendar |
|||
code |
Code of the country |
|||
companyCode |
The code of the company linked to the country |
|||
companyId |
ID of the company |
|||
continent |
The continent where the country is located |
|||
currency |
The country's currency |
|||
currencyId |
Id of the country's currency |
|||
id |
Id in database |
|||
isPartOfEU |
Returns true if the country is part of the European Union |
|||
name |
Name of the country |
3.96. CrmAnalysis
Contains all the information for a commercial analysis.
The analysis can be done on quotation or opportunity lines.
See Business deals dashbord on Akuiteo documentation
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
filter |
Set of filters on the analyzed data |
|||
group |
Set of groups aggregating the data |
|||
objects |
List of [string] |
What the analysis is about: |
Enum: ONGOING_OPPORTUNITIES, ONGOING_QUOTATIONS, WON_OPPORTUNITIES, SIGNED_QUOTATIONS, LOST_OPPORTUNITIES, ARCHIVED_QUOTATIONS |
|
view |
Projection (presentation) of the analyzed data (weighting, aggregation, ….) |
3.97. CrmAnalysisFilter
Criteria for filtering the annalysed data (Opportunities or Quotations)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
axeType |
X |
Unused (technical field) |
||
companyCode |
Code of the company |
|||
currencyCode |
Code of the currency |
|||
customerAccountManagerId |
Ident of customer's account manager |
|||
customerAccountManagerSupervisorId |
Ident of customer's account manager supervisor |
|||
customerCountryId |
Ident of customer's country |
|||
customerFamilyId |
Ident of the customer's project category |
|||
customerGrouping1 |
Customer's grouping |
|||
customerGrouping2 |
Customer's grouping 2 |
|||
customerId |
Ident of customer |
|||
customerRegionId |
Ident of customer's address region |
|||
customerSalesmanId |
Ident of customer's salesman |
|||
customerSalesmanSupervisorId |
Ident of customer's salesman supervisor |
|||
customerSectorId |
Ident of customer's sector |
|||
customerState |
Customer's state |
|||
customerSubFamilyId |
Ident of the customer's project subcategory |
|||
date |
For quotations: Actual signature date or archived date or expected signature date. |
|||
groupCustomer |
Group of companies of the customer |
|||
phaseId |
Ident of the phase |
|||
pipelineId |
Ident of the pipeline |
|||
probability |
Probability of the crm analysis |
|||
productFamilyId |
Ident of the product family |
|||
productSubFamilyId |
Ident of the product sub-family |
|||
projectActivityId |
||||
projectCampaignId |
Ident of the project's compaign |
|||
projectCompanyCode |
Code of the project's company |
|||
projectDepartmentId |
Ident of the project's department |
|||
projectDivisionGroupId |
Ident of the project's division group |
|||
projectDivisionId |
Ident of the project's division |
|||
projectEstablishmentId |
||||
projectFamilyId |
Ident of the project's category |
|||
projectFinancialManagerId |
Ident of the project's financial manager |
|||
projectId |
Ident of the project (equivalent to the code of the project) |
|||
projectManagerId |
Ident of the project manager of the project |
|||
projectMarketId |
Ident of project group of the project |
|||
projectProductionManagerId |
Ident of the project's product manager |
|||
projectSalesManagerId |
Ident of the project's sales manager |
|||
projectState |
State of project |
|||
projectSubFamily2Id |
Ident of the project's sub-category level 2 |
|||
projectSubFamilyId |
Ident of the project's sub-category |
|||
projectVintageId |
Ident of the year (vintage) of the project |
|||
prospect |
True is customer is a prospect |
|||
salesManagerId |
Ident of the sales manager |
|||
salesManagerSupervisorId |
Ident of the sales manager supervisor |
|||
subPhaseId |
Ident of the sub-phase |
|||
technicalManagerId |
Ident of the technical manager |
|||
technicalManagerSupervisorId |
Ident of the technical manager supervisor |
3.98. CrmAnalysisGroup
CrmAnalysisGroup Axes of analysis and grouping of analysis data.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
axes |
List of AxeGroupsType |
Set of analysis axis |
||
by |
List of CrmAnalysisGroupType |
Data analysis' axis (Clustering). |
3.99. CrmAnalysisGroupType
Data analysis' axis (Clustering).
Type : enum (COMPANY_CODE, CURRENCY_CODE, PIPELINE_ID, PIPELINE_CODE, PIPELINE_NAME, SALES_MANAGER_ID, SALES_MANAGER_CODE, TECHNICAL_MANAGER_ID, TECHNICAL_MANAGER_CODE, SALES_MANAGER_SUPERVISOR_ID, SALES_MANAGER_SUPERVISOR_CODE, TECHNICAL_MANAGER_SUPERVISOR_ID, TECHNICAL_MANAGER_SUPERVISOR_CODE, PRODUCT_FAMILY_ID, PRODUCT_FAMILY_CODE, PRODUCT_SUB_FAMILY_ID, PRODUCT_SUB_FAMILY_CODE, PRODUCT_SUB_FAMILY_NATURE, TYPE, PROBABILITY, NUMBER, NAME, DATE, EFFECTIVE_SIGNING_DATE, EXPECTED_SIGNING_DATE)
3.100. CrmAnalysisView
Information on the projection (presentation) of the analysis data.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
dateLike |
Aggregation of lines (Quotation or opportunity) by Month, Quarter, Semester (Half) or Year. |
Enum: MONTH, QUARTER, HALF, YEAR, MONTH, QUARTER, HALF, YEAR |
||
objective |
Only for quotation, if true exclude data whose maturity level is 9 |
|||
value |
Type of measure on which the analysis is calculated. |
Enum: QUANTITY, AMOUNT, ORIGINAL_AMOUNT, QUANTITY, AMOUNT, ORIGINAL_AMOUNT |
||
weighting |
If NONE no weighting, if FROM_OBJECT then we use the weighting coefficient on the quotation and the commission rate on opportunities |
Enum: NONE, FORCED, FROM_OBJECT, NONE, FORCED, FROM_OBJECT |
||
weightingForced0 |
Degree 0 of probability if field 'weighting' is at the value FORCED |
double |
||
weightingForced1 |
Degree 1 of probability if field 'weighting' is at the value FORCED |
double |
||
weightingForced2 |
Degree 2 of probability if field 'weighting' is at the value FORCED |
double |
||
weightingForced3 |
Degree 3 of probability if field 'weighting' is at the value FORCED |
double |
||
weightingForced4 |
Degree 4 of probability if field 'weighting' is at the value FORCED |
double |
||
weightingForced9 |
Degree 9 of probability of the prospect if field 'weighting' is at the value FORCED |
double |
3.101. Currency
Currency
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the currency |
|||
endDate |
End date for using the currency |
date-time |
||
euro |
Returns true if the currency is in euro |
|||
euroRate |
Exchange rate against the euro. |
double |
||
euroRateEndDate |
End date of the exchange rate (euroRate field). |
date-time |
||
euroRateStartDate |
Start date of the exchange rate (euroRate field). |
date-time |
||
id |
Id in database |
|||
name |
Name of the currency |
|||
order |
Order number of the currency |
3.102. CustomData
Custom data
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
label |
Label of the custom data |
|||
name |
Name of the custom data |
|||
realOrder |
Order number to display |
int32 |
||
type |
Type of the custom data |
|||
value |
Value of the custom data |
3.103. CustomDataPage
Page of the custom data
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
columnNumber |
Number of custom data page columns. |
|||
id |
ID of the custom data page |
|||
name |
The name of the custom data page. |
|||
order |
The order (ranking) of the custom data page. |
int32 |
3.104. CustomDataParam
Description of a parameter of custom data
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
ID of the custom data |
|||
keywordId |
ID of the keyword |
|||
label |
Label of the custom data |
|||
multiLine |
True if custom data is multi line |
|||
name |
Name of the custom data |
|||
order |
Order of the custom data |
int32 |
||
page |
Page of the custom data |
|||
pageId |
ID of the page |
|||
pattern |
Validation pattern of the custom field |
|||
property |
Property of the custom data |
|||
realOrder |
Real order of the custom data |
int32 |
||
section |
Section of the custom data |
|||
sectionId |
ID of the section |
|||
sequence |
Sequence of the custom data |
int32 |
||
textLimit |
Text limit of the custom data |
int32 |
||
type |
Type of the custom data |
|||
viewLabel |
True if label is visible |
3.105. CustomDataPattern
Custom data pattern
Type : enum (DATE_TIME, UPPER_CASE, LOWER_CASE, PROPER_CASE, PHONE, INTEGER, INTEGER_THOUSAND_SEPARATOR, INTEGER_ZERO_NOT_SIGNIFICANT, TWO_DIGITS_AFTER_DECIMAL_POINT, THREE_DIGITS_AFTER_DECIMAL_POINT, CURRENCY, CURRENCY_ZERO_NOT_SIGNIFICANT, URL, PERCENTAGE, PERCENTAGE_ONE_DIGIT, PERCENTAGE_TWO_DIGITS, PERCENTAGE_THREE_DIGITS, SIGNATURE, PASSWORD)
3.106. CustomDataSection
Section for custom data
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
columnNumber |
Column number of the custom data section |
|||
id |
ID of the custom data section |
|||
name |
Name of the custom data section |
|||
order |
Order number of the custom data section |
int32 |
||
pageId |
ID of the page |
|||
type |
By default set as SECTION |
3.107. CustomDataSectionType
SECTION to add the custom data into a section label;
COMPOSITE to add the custom data one after the other, without grouping them under a section label.
Type : enum (SECTION, COMPOSITE)
3.109. Customer
Customer
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
APE |
Customer's main activity code (Activité Principal Exercé). |
|||
SIREN |
Siren number. |
|||
SIRET |
Siret number. |
|||
accountManager |
Details about the account management |
|||
accountManagerId |
The ID of the account manager. |
|||
accountingParameters |
Details about financial informations |
|||
accountingPeriod |
Accounting period or financial period (Fr: Exercice). |
|||
address |
Details about the address of the customer |
|||
addressId (Deprecated) |
The ID of the address of the customer. |
|||
automaticUnpaidInvoiceReminder |
Set as true if the customer must to reminder automatically for unpaid invoices. |
|||
bankingInformations |
List of BankingInformation |
Details about the list of banking information for this customer. |
||
category |
Details about the category of the customer |
|||
categoryId |
The ID of the category of the customer |
|||
changeTracking |
Creation and modification date and user |
|||
closure |
Closing date. |
date-time |
||
code |
The code of the third party (customer, supplier, other third party). |
|||
companyCode |
The company code of the customer |
|||
conditionOfPayment |
The condition of payment for the customer. |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
The email of the customer. |
||||
entity |
Detail about the entity of the customer. |
|||
entityId |
The ID of the entity |
|||
equity |
Corporate capital or capital stock of the customer |
double |
||
exclusionCodes |
The exclusion code (separated by '/') |
|||
externalReference |
The external customer identification |
|||
firstPricingMethod |
Details about the first princing method |
|||
firstPricingMethodId |
First pricing method id |
|||
headcount |
The number of employees in the company of the customer (Fr: Effectif) |
double |
||
id |
Id in database |
|||
indicators |
Customer Indicators |
|||
isProspectValidated |
Indicates whether the prospect has been validated. If the type field is already set to CUSTOMER, this field is no longer relevant. |
|||
keywords |
The keywords of the customer separated by '/') |
|||
languageCode |
The language code for the customer |
|||
lastTracking |
Last tracking date |
date-time |
||
legalForm |
Legal status for the customer (forme juridique) |
|||
legalName |
The first legal name of the customer (Fr: Nom complet) |
|||
legalName2 |
The second legal name of the customer (Fr: Suite du nom complet) |
|||
level1grouping |
The code for the first grouping level |
|||
level2grouping |
The code for the second grouping level |
|||
manualUnpaidInvoiceReminder |
Set as true if the customer must to reminder manually for unpaid invoices. |
|||
methodOfPayment |
Method of payment |
|||
name |
The name of the third party (customer, supplier, other third party). |
|||
notes |
Customer notes (comment) |
|||
open |
Opening date |
date-time |
||
phone |
The phone of the customer. |
|||
profession |
Details about the profession of the customer. |
|||
professionId |
The ID of the profession of the customer. |
|||
professionalCategory |
Details about the professional category of the customer. |
|||
professionalCategoryId |
The ID of the professional category of the customer. |
|||
revenue |
Revenue (C.A) |
double |
||
salesman |
Details about the salesman (Commercial). |
|||
salesmanId |
The ID of the salesman |
|||
salesmen |
List of LinkedSalesmen |
List of the linked salesmen |
||
secondPricingMethod |
Details about the second princing method |
|||
secondPricingMethodId |
Second pricing method id. |
|||
sector |
Details about the sector. |
|||
sectorId |
The ID of the sector |
|||
serviceProviderProject |
Details about the service provider project. |
|||
sites |
List of Site |
List of the customer sites |
||
status |
Details about the customer Status |
|||
statusId |
The ID of the customer status. |
|||
subCategory |
Details about the sub Category of the customer. |
|||
subCategoryId |
Customer sub-category ID |
|||
taxInformation |
Details about the customer Tax Information. |
|||
thirdPartyLinkType |
Third party link type for this customer. |
|||
thirdPartyLinkTypeId |
The Id of the third party link type. |
|||
type |
Customer or Prospect |
|||
unit |
The unit related to revenue. |
3.110. CustomerBase
Customer
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the third party (customer, supplier, other third party). |
|||
id |
Id in database |
|||
name |
The name of the third party (customer, supplier, other third party). |
3.111. CustomerCriteria
Criteria used on Customer when doing a Customer search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountManagerId |
||||
activeModule |
Example : EXPENSE_REPORTS |
|||
changeTracking |
Change tracking criteria |
|||
city |
||||
closure |
Closing date of the customer |
|||
code |
||||
companyId |
ID of the company |
|||
countryCode |
||||
countryId |
||||
createdById |
||||
createdTime |
Created date of the customer |
|||
customData |
Map of Clause |
The custom data details (when present) |
||
customerInternalType |
Internal type of the customer. |
|||
departmentCode |
||||
departmentId |
||||
divisionId |
||||
entityId |
||||
externalReference |
||||
filterOnLinkCustomerToBill |
To apply the linked customer id filter to get customers to bill (with third-party links) |
|||
filterOnLinkProjectCustomer |
To apply the project filter to the link Customer Project |
|||
group |
Set as 'true' to return the customer checked as group |
|||
id |
||||
intercoCode |
||||
keywords |
||||
lastTracking |
Last tracking date of the customer |
|||
level1grouping |
||||
level2grouping |
||||
linkedCustomerIdForCustomerToBill |
||||
modificationById |
||||
modificationTime |
Modification date of the customer |
|||
name |
||||
open |
Opening date of the customer |
|||
postalCode |
||||
projectId |
Ident of the project (equivalent to the code of the project) |
|||
readOption |
The customer read option |
|||
reconciliationAccount |
||||
referentialDate |
Date where the customer must be active (opnen and not closed) |
date-time |
||
regionCode |
||||
regionId |
||||
salesmanId |
||||
siren |
Siren number |
|||
siret |
Siret number |
|||
statusId |
||||
tag |
||||
type |
3.112. CustomerIndicator
Customer Indicator
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
byDefault |
Set as true to use this customer indicator by default. Set as false by default |
|||
code |
Code of the Customer Indicator |
|||
colorHexCode |
The Hexadecimal color code for this customer Indicator |
|||
customerId (Deprecated) |
ID of the Customer |
|||
id |
Id in database |
|||
name |
Name of the Customer Indicator |
|||
order |
The order (ranking) of this customer indicator |
int32 |
3.113. CustomerIndicatorCriteria
Criteria used to get more details about the customer indicator
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
byDefault |
True if customer indicator is by default |
|||
code |
||||
colorHexCode |
||||
id |
||||
name |
3.114. CustomerIndicators
Indicators of a customer
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customerId |
ID of the Customer |
|||
indicator1 |
The first indicator |
|||
indicator2 |
The second indicator |
|||
indicator3 |
The third indicator |
3.116. CustomerLocation
Customer's Location
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the customer site |
|||
customer (Deprecated) |
Details about the customer |
|||
customerId (Deprecated) |
Code of the associated customer |
|||
id |
Id in database |
|||
name |
Name of the customer site |
3.117. CustomerReadOption
Options used to get additional information when doing a customer's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the customer |
Enum: ADDRESS, CUSTOMER_INDICATORS, SALESMAN, ACCOUNT_MANAGER, ENTITY, CONDITION_OF_PAYEMENT, METHOD_OF_PAYMENT, ACCOUNTING_PARAMETERS, TAX_INFORMATION, SERVICE_PROVIDER_PROJECT, PRICING_METHOD, CATEGORY, SUB_CATEGORY, PROFESSION, PROFESSIONAL_CATEGORY, SECTOR, STATUS, SITES, CHANGE_TRACKING, SALESMEN, CUSTOM_DATA, FORM_CONFIG, THIRD_PARTY_LINK_TYPE, TAX_INFORMATION_VAT_AREA, BANKING_INFORMATIONS |
3.118. CustomerRelatedInformation
Customer Related Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Creation and modification date and user |
|||
companyId |
ID of the company |
|||
contactId |
ID of the contact related to this contact |
|||
customerId (Deprecated) |
ID of the customer related to this contact |
|||
customerName |
Name of the customer |
|||
id |
Id in database |
|||
noLongerWorkForThisCompany |
True if the Contact no longer works for the company |
|||
showAllRequests |
True if the Contact can see all the requests of his company |
|||
thirdPartyRef |
Customer third party link |
3.119. CustomerSiteBase
Customer Sites
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the customer site |
|||
customer (Deprecated) |
Details about the customer |
|||
customerId (Deprecated) |
Code of the associated customer |
|||
id |
Id in database |
|||
name |
Name of the customer site |
3.120. CustomerStatus
Customer Status
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the Customer Status |
|||
companyId |
ID of the company |
|||
endDate |
The end date of the customer status. |
date-time |
||
id |
Id in database |
|||
name |
Name of the Customer Status |
|||
ranking |
The customer status ranking in the list |
int32 |
3.121. CustomerTaxInformation
Customer Tax Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
VATAreaId (Deprecated) |
The Id of the VAT Area |
|||
VATNumber (Deprecated) |
The number of the VAT rate |
|||
customerId |
Id of the Customer |
|||
euExempt |
The 'euExempt' field indicates whether Intracommunity VAT exemption applies. |
|||
exempt |
The 'exempt' field indicates whether there is VAT exemption. |
|||
vatArea |
Details about the VAT Area. |
|||
vatAreaId |
The Id of the VAT Area |
|||
vatNumber |
The number of the VAT rate |
3.123. CustomizableResources
Customizable resources (Ressources personnalisables)
Type : enum (ISSUE, OPPORTUNITY, OPPORTUNITY_LINE, CUSTOM_REQUEST, EVENT, PROJECT, PHASE, SUB_PHASE, EMPLOYEE, CUSTOMER, CONTACT, SALES, PURCHASE)
3.124. DateParamHolder
Date given in parameter
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
date |
Date |
date-time |
3.126. Department
Division
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activities |
List of ActivityBase |
Activities of the department |
||
analysis |
Analysis of the department |
|||
code |
Code of the department |
|||
comment |
Comment of the department |
|||
companyCode |
Code of the company |
|||
entity |
Details of the entity |
|||
entityId |
ID of the entity |
|||
id |
Id in database |
|||
name |
Description of the department |
|||
projectType |
Type of the project |
3.127. DepartmentReadOption
Options used to get additional information when doing a Department search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the department |
Enum: ENTITY, ACTIVITY |
3.128. Discount
Discount on a Management Object Line
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amount |
The discount amount |
double |
||
amountCurrency |
The discount amount in the currency |
double |
||
percentage |
The discount percentage |
double |
||
type |
Type of discount (PERCENT, AMOUNT) |
3.130. Division
Division
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of a division |
|||
companyId |
Id of the company |
|||
group |
Details about the group |
|||
groupId |
ID of the group |
|||
id |
Id in database |
|||
name |
Name of a division |
3.131. DivisionGrouping
Division grouping
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of a division grouping |
|||
id |
Id in database |
|||
name |
Name of a division grouping |
|||
serviceId |
ID of the service |
3.132. DmfBase
A dmf (a right in akuiteo D - Functional Area, M - Module, F - Feature)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the right(dmf). |
|||
id |
Id in database |
|||
name |
The name of the right(dmf). |
3.133. Document
Details about document (file or link)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
Details about the action performed on the document |
|||
archived |
Return true if the document is archived. |
|||
category |
All details about the category of the product |
|||
category1 |
First category of the document |
|||
category2 |
Second category of the document |
|||
category3 |
Third category of the document |
|||
categoryId |
The Id of the category |
|||
changeTracking |
Creation and modification date and user |
|||
classification |
Classification of the document. |
|||
companyId |
ID of the company |
|||
description |
The description of the document |
|||
documentType |
Type of the document. |
|||
externalDMSUuid |
External ID when you use a DMS |
|||
fileName |
File name |
|||
fileUrl |
File url. This field cannot be updated once it has been created. |
|||
id |
Is of the document |
|||
lienUrl |
URL of the document |
|||
links |
List of DocumentLink |
Details about document's links |
||
locked |
Set as true if the document is locked. |
|||
original |
Return true if the document is an original. |
|||
owner |
Details about the publisher of the document. |
|||
ownerId |
ID of the owner of the document. |
|||
preview |
Preview of the document |
|||
publicationDate |
Publication date |
date-time |
||
publishedBy |
Details about the publisher of the document. |
|||
publishedById |
ID of the publisher of the document. |
|||
subCategory |
All details about the sub-category of the product |
|||
subCategoryId |
The Id of the sub-category |
|||
subClassification |
Sub-classification of the document |
|||
title |
X |
Title of the document |
||
tokenPreview |
Token to request by url the preview of the document |
|||
url |
URL of the document |
|||
version |
Version of the document |
double |
||
versionId |
ID of the version |
3.134. DocumentLink
A link between a document and any other object
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
document |
Details about the document |
|||
documentId |
ID of the document |
|||
id |
ID of the link |
|||
objectId |
ID of the object linked to the document |
|||
objectType |
Details about the type of object linked |
|||
original |
Return true if the document is an original |
3.135. DocumentVersion
DocumentVersion
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
classification |
Classification of the document. |
|||
documentId |
ID of the document |
|||
id |
Id in database |
|||
title |
Title of the document |
|||
version |
Version number |
double |
3.136. DueDate
Due date
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amount |
Amount to pay |
double |
||
currencyCode |
Code of the currency |
|||
date |
Due date |
date-time |
||
id |
Id in database |
|||
invoiceId |
ID of the invoice |
3.137. DueDateCriteria
Criteria used to get more details about the due date
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
invoiceId |
Ident of the invoice |
3.138. Durations
Duration in different units
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
durationDay |
Duration in day |
double |
||
durationHour |
Duration in hour |
double |
||
durationHourMinute |
Duration in hour minute |
double |
||
durationMinute |
Duration in minute |
double |
3.139. DutiableCriteria
Search criteria for dutiable fields
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
forcedVat |
Forced VAT clause |
|||
vat1 |
VAT code 1 |
|||
vat2 |
VAT code 2 |
3.140. DutiableLine
Tax Line
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
additionalFreeFields |
Additional free fields of a line |
|||
afterTaxAmountTotal |
Total After-Tax amount expressed in company currency |
double |
||
afterTaxAmountTotalCurrency |
Total After-Tax amount in the currency |
double |
||
amountTotal |
Total amount expressed in company currency |
double |
||
amountTotalCurrency |
Total amount in the currency |
double |
||
complementName |
Description of the line |
|||
forcedVat |
Forced VAT for the line |
|||
generalAccount |
General Account |
|||
id |
Id in database |
|||
managementObjectId |
Id of the management object |
|||
name |
Name of the line |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
quantity |
Quantity of the product |
double |
||
rankNumber |
Rank number of the line |
double |
||
resource |
Resource allocated to complete the task |
|||
resourceId |
Id of the resource allocated to complete the task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
totalPrice |
Total price before discount expressed in company currency (unit price * quantity) |
double |
||
totalPriceCurrency |
Total price before discount in the currency (unit price * quantity) |
double |
||
unitPrice |
Unit price of the product expressed in company currency |
double |
||
unitPriceCurrency |
Unit price of the product expressed in company currency. The value in this field is not stored. Upon retrieval, it is calculated based on the rate in effect on the date of the management sales object. |
double |
||
vat1 |
Details about the first VAT rate |
|||
vat2 |
Details about the second VAT rate |
|||
vatAmount1 |
Amount expressed in company currency with the first VAT |
double |
||
vatAmount1Currency |
Amount in currency for the first VAT |
double |
||
vatAmount2 |
Amount expressed in company currency for the second VAT |
double |
||
vatAmount2Currency |
Amount in currency for the second VAT |
double |
3.141. ESignatureMessage
Message for electronic signature of a management object.
A message is a combination of a Mail (used to store standard information for sending a mail) and functional information. This functional information is processed by backend service to compute standard information for sending mail like an employee's email address.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
ccRecipients |
List of MessageRecipient |
Cc mail recipients |
||
publishArguments |
Required arguments to publish a document |
|||
toRecipients |
List of MessageRecipient |
Main mail recipients |
3.142. ESignatureSignatoryType
Defines the type of signatory for electronic signatures.
A signatory can be either an employee or a contact.
Type : enum (CONTACT, EMPLOYEE)
3.143. ESignatureStatus
Electronic signature status of a management object
Type : enum (IN_PROGRESS, CANCELED, EXPIRED, SIGNED, FAILED, PENDING, SIGNATURE_REQUESTED)
3.144. ESignatureTransaction
Information on transactions for electronic signatures
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
date |
The date of the transaction |
date-time |
||
daysSpent |
Number of days since transaction was requested |
double |
||
id |
Id in database |
|||
ranking |
Rank number of transaction. |
int32 |
||
rejectionReason |
The reason for rejection if the signatory has refused to sign the document. |
|||
requesterId |
The ID of the the transaction requester. |
|||
signatoryEmail |
Signatory e-mail address |
|||
signatoryId |
The ID of th signatory |
|||
signatoryType |
The type of signatory for electronic signatures. |
|||
signatureDate |
The date of signature. |
date-time |
||
signatureStatus |
Status of the signature |
|||
status |
Status of the transaction |
3.145. EmployeeBase
Employees
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb |
|||
code |
Code of the employee |
|||
firstName |
First name of the employee |
|||
id |
Id in database |
|||
name |
Name of the employee |
3.146. Entity
Entity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the entity |
|||
companyId |
ID of the company |
|||
division |
Details of the division |
|||
divisionCode |
Code of the division |
|||
divisionId |
ID of the division |
|||
endDate |
End date of the entity |
date-time |
||
id |
Id in database |
|||
legalName |
Legal name of the entity |
|||
name |
The name of the entity |
3.147. EntityBase
Entity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the entity |
|||
id |
Id in database |
|||
name |
The name of the entity |
3.148. ErrorMessage
Error message for batch processing
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
ID of the object in error |
|||
message |
Detailed error message related to the identifier |
3.149. ErrorResponse
The canonical model for problem details is a JSON [RFC7159] object.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
A human-readable explanation specific to this occurrence of the problem. |
|||
message |
A human-readable explanation specific to this occurrence of the problem. |
|||
status |
The HTTP status code ([RFC7231], Section 6) |
|||
timestamp |
Timestamp of the error |
date-time |
||
title |
A short, human-readable summary of the problem |
|||
type |
A URI reference [RFC3986] that identifies the problem type |
3.150. Event
Event
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
category |
Details about the category |
|||
categoryId |
ID of the category |
|||
changeTracking |
Date and user of creation and modification |
|||
comment |
Comment of the event |
|||
companyCode |
Company of the supplier |
|||
completion |
Details about the completion |
|||
completionPercentage |
Value of a Clause of type Probability |
|||
customData |
Map of CustomData |
The custom data (when present). |
||
date |
Date of the event |
date-time |
||
duration |
Duration of the event |
int32 |
||
endDate |
End date of the event |
date-time |
||
finished |
Set as 'true' if the event is completed. |
|||
fullDay |
Set as 'true' to indicate if the appointment-type event is a full-day event. |
|||
id |
Id in database |
|||
isHelpDeskEvent |
Set as 'true' if the Event is a help desk event. |
|||
mainCustomer |
Details about the main customer |
|||
mainCustomerId |
ID of the main customer |
|||
mainProject |
Details about the main project |
|||
mainProjectId |
ID of the main project (equivalent to the code of the project) |
|||
multiCompany |
True if multiCompany |
|||
objectLinksCampaigns |
List of ObjectLink |
Details about the link between the event and the campaigns |
||
objectLinksProjects |
List of ObjectLink |
Details about the link between the event and the objects from projects |
||
objectLinksPurchases |
List of ObjectLink |
Details about the link between the event and the objects from purchases |
||
objectLinksRefs |
List of ObjectLinkRef |
This field is used to get the full list of objects linked to the event, providing only their ID and type |
||
objectLinksSales |
List of ObjectLink |
Details about the link between the event and the objects from sales |
||
objectLinksSupports |
List of ObjectLink |
Details about the link between the event and the objects from supports |
||
objectLinksTrainings |
List of ObjectLink |
Details about the link between the event and the objects from trainings |
||
owner |
Details about the owner |
|||
ownerId |
ID of the owner |
|||
priority |
Details about the priority |
|||
relationshipsContactSupplierSites |
List of Relationship |
Details about the relationship between the event and the contact supllier sites |
||
relationshipsContactsCustomerSite |
List of Relationship |
Details about the relationship between the event and the contacts customer site |
||
relationshipsCustomerSites |
List of Relationship |
Details about the relationship between the event and the customer sites |
||
relationshipsCustomersAndProspect |
List of Relationship |
Details about the relationship between the event and the customer or prospect |
||
relationshipsEmployees |
List of Relationship |
Details about the relationship between the event and the employee |
||
relationshipsOpportunities |
List of Relationship |
Details about the relationship between the event and the oppotunities |
||
relationshipsOtherThirdParties |
List of Relationship |
Details about the relationship between the event and the others third parties |
||
relationshipsRefs |
List of RelationshipRef |
This field is used to get the full list of relationships existing between a third party and the event, providing only their ID and type |
||
relationshipsSupplierSites |
List of Relationship |
Details about the relationship between the event and the supplier site |
||
relationshipsSuppliers |
List of Relationship |
Details about the relationship between the event and supplier |
||
reminderDate |
Date of event reminder to the owner. |
date-time |
||
reply |
Details about the reply event |
|||
replyDate |
Reply date of the event |
date-time |
||
replyId |
ID of the reply |
|||
subject |
Subject of the event |
|||
type |
Details about the type |
3.151. EventCompletion
List of completion enum values
Type : enum (NOT_STARTED, STARTED, WAITING_FOR_SOMEONE_ELSE, DEFERRED, FINISHED)
3.152. EventCriteria
Criteria used on Event Service when doing an Event search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
categoryId |
Ident of the category |
|||
comment |
Comment of the event |
|||
companyCode |
Code of the company |
|||
completion |
Details about the completion |
|||
customData |
Map of Clause |
The custom data details (when present) |
||
endDate |
End date of the event |
|||
id |
Ident of the event |
|||
isHelpDeskEvent |
Set as 'true' to return the help desk event. |
|||
mainCustomerId |
ID of the main customer |
|||
mainProjectId |
ID of the main project |
|||
objectLinksCampaign |
Search criteria for linked campaign objects |
|||
objectLinksProject |
Search criteria for linked project objects |
|||
objectLinksPurchase |
Search criteria for linked purchase objects |
|||
objectLinksSales |
Search criteria for linked sales objects |
|||
objectLinksSupport |
Search criteria for linked support objects |
|||
objectLinksTraining |
Search criteria for linked training objects |
|||
ownerId |
Ident of the owner |
|||
priority |
Priority of an Event |
|||
readOption |
Options for retrieving extra information concerning the events |
|||
reminderDate |
Date of event reminder to the owner. |
|||
startDate |
Start date of the event |
|||
subject |
Subject of the event |
|||
tag |
You can use this clause to do a text search on the object and comment of the avent |
|||
type |
Type of the event |
3.153. EventDashboardCriteria
Criteria used on Event Service when doing a Event Dashboard search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Ident of the event dashboard |
|||
includeFinished |
Set as True if you want to include finished event |
|||
intervalDate |
Interval date of the event dashboard |
|||
ownerId |
Ident of the owner |
|||
ownershipType |
Type of the ownership |
3.154. EventDashboardResult
Result of a Event's Dashboard search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
category |
Category of event in the dashboard result |
|||
categoryId |
ID of the category |
|||
comment |
The comment of the event in the dashboard result |
|||
customer |
The customer of the event in the dashboard result |
|||
date |
Date of the event |
date-time |
||
finished |
Set as true if the event dashboard result is finished |
|||
icon |
Icon used when the event is displayed |
|||
id |
Id in database |
|||
nature |
The nature (type) of the event in the dashboard result. |
|||
owner |
The owner of the event in the dashboard result |
|||
priority |
Details about the priority |
|||
subject |
The subject of the event in the dashboard result |
3.155. EventIntervalDate
Criteria used on Event Service when doing a Event search
Type : enum (LATE, TODAY, THIS_WEEK, NEXT_WEEK, AFTER_NEXT_WEEK, ALL)
3.157. EventReadOption
Options used to get additional information when doing an Event's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the event |
Enum: OWNER, CATEGORY, REPLY, RELATIONSHIPS_CUSTOMERS, RELATIONSHIPS_PROSPECT, RELATIONSHIPS_CONTACTS_CUSTOMERSITES, RELATIONSHIPS_CONTACTS_SUPPLIERSITES, RELATIONSHIPS_OPPORTUNITIES, RELATIONSHIPS_EMPLOYEES, RELATIONSHIPS_SUPPLIERS, RELATIONSHIPS_SUPPLIERSITES, RELATIONSHIPS_OTHERTHIRDPARTIES, RELATIONSHIPS_REFS, OBJECT_LINKS_PROJECTS_PROJECTS, OBJECT_LINKS_PROJECTS_PHASES, OBJECT_LINKS_PROJECTS_SUBPHASES, OBJECT_LINKS_PROJECTS_PROJECTTASKS, OBJECT_LINKS_SALES_SALEQUOTATIONS, OBJECT_LINKS_SALES_SALEORDERS, OBJECT_LINKS_SALES_SALEINVOICES, OBJECT_LINKS_SALES_BILLING_TABLES, OBJECT_LINKS_SALES_DELIVERIES, OBJECT_LINKS_PURCHASES_RECEPTIONS, OBJECT_LINKS_PURCHASES_PURCHASEORDERS, OBJECT_LINKS_PURCHASES_PURCHASEINVOICES, OBJECT_LINKS_PURCHASES_PURCHASEQUOTATIONS, OBJECT_LINKS_PURCHASES_BILLING_TABLES, OBJECT_LINKS_SUPPORTS_CONTRACTS, OBJECT_LINKS_SUPPORTS_CONTRACTSERVICES, OBJECT_LINKS_SUPPORTS_ISSUES, OBJECT_LINKS_SUPPORTS_ISSUETASKS, OBJECT_LINKS_SALES_OPPORTUNITIES, OBJECT_LINKS_REFS, CUSTOM_DATA, CHANGE_TRACKING, FORM_CONFIG, MAIN_PROJECT, MAIN_CUSTOMER, OBJECT_LINKS_TRAINING_SESSIONS, OBJECT_LINKS_TRAINING_COURSES, OBJECT_LINKS_CAMPAIGNS, OBJECT_LINKS_DIRECT_DEBIT_MANDATES, OBJECT_LINKS_SUPPLIER_CONTRACTS, OBJECT_LINKS_PURCHASE_REQUESTS, RELATIONSHIPS_CUSTOMER_SITES |
3.158. EventType
Type of event
Type : enum (COMMAND_TASK, COMPANY, CUSTOMER, SUPPLIER, DIVISION, DIVISION_GROUP, EMPLOYEE, EMPLOYEE_HISTORY, ENTITY, EXPENSE, EXPENSE_REPORTS, FEATURE_FLAG, INVOICES_CHECK, ISSUE, PHASE, PROJECT, PROJECT_TASK, SCHEDULE, SPRINT, SUB_PHASE, TASK, TIMERECORDING, DOCUMENT, YEAR, TITLE, FAMILY, SKILL, SERVICE, JOB_TYPE, STANDARD_WEEK, EXPENSE_PROFILE, LANGUAGE, PROJECT_OPTIONS, PROJECT_GROUP, ACTIVITY, DEPARTMENT, REFRESH_CQRS, SPRINT_CARD, WEBHOOK, CONTRACT, QUOTATION, SALES_ORDER, OPPORTUNITY, PURCHASED_ITEM, SOLD_ITEM, CONTACT, EVENT, ALL, SPRINT_CARD_GROUP)
3.159. EventsBreakdown
EventsBreakdown
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
periods |
Map of [object] |
The periods details of the event breakdown |
3.160. EventsBreakdownCriteria
Criteria used on Event Service when doing a Get events breakdown by period
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
ownerId |
Ident of the owner |
|||
ownershipType |
Type of the ownership |
3.161. ExchangeRate
Exchange Rate
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
currency |
Details about the currency |
|||
currencyId |
Id of the currency |
|||
endDate |
End date for using the exchange rate |
date-time |
||
id |
Id in database |
|||
rate |
Exchange rate to convert the amount from euro into an amount in the revelant currency |
double |
||
startDate |
Start date for using the exchange rate |
date-time |
3.162. ExpenseReceiptSummary
Details about the expense receipt
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amount |
Amount on the receipt |
double |
||
currencyCode |
Code of the currency |
|||
date |
Date of the document |
date-time |
||
expenseTypeCode |
Code of expense's type |
|||
filePath |
Path of the document |
|||
rebillable |
Return true if the expense can be rebilled |
3.163. FeatureFlag
Application feature
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
active |
If the feature is active |
|||
domain |
Feature classification (main level) |
|||
id |
Feature identifier |
|||
label |
Feature description |
|||
subDomain |
Feature classification (detail level) |
3.164. FieldError
Object containg the error for a field
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
elementId |
The id of the sub element in error (which can have several errors) |
|||
fieldName |
X |
The fieldName of the field in error |
||
message |
X |
The error message |
3.165. FinancialConditionOfPayment
The condition of payment for a customer
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Payment code |
|||
day |
Day of the month on which the payment will be done |
double |
||
deadLine |
Number of days to carry out the payment |
|||
referenceOnBankStatement |
Reference on bank statement |
|||
term |
Period of payment |
3.166. FiscalYearBase
Fiscal Year
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the FiscalYear |
|||
id |
Id in database |
|||
journalEntryNumberingId |
Id of the JournalEntryNumbering |
|||
name |
Name of the FiscalYear |
3.167. FiscalYearCommon
Fiscal Year
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
closingDate |
Date on which the fiscal year is officially closed. |
date |
||
code |
Code of the FiscalYear |
|||
endDate |
Fiscal year's end date |
date |
||
id |
Id in database |
|||
journalEntryNumberingId |
Id of the JournalEntryNumbering |
|||
name |
Name of the FiscalYear |
|||
startDate |
Fiscal year's start date |
date |
3.168. FixedAssetRecordSheetBase
Fixed asset record sheet
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Name of fixed asset record sheet |
3.169. FixedAssetRecordSheetCommon
Fixed asset record sheet
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Name of fixed asset record sheet |
|||
number |
Number of fixed assets |
3.171. ForcedVatAmountHolder
VAT Amount and forced indicator holder
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amount |
Forced amount |
double |
||
forced |
X |
Returns true if the amount is forced |
||
managementObjectLineId |
ID of the management object line |
3.172. FormConfig
Form Config
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
controls |
Map of ControlBehavior |
Details about the control behavior linked to the field |
||
deletable |
Deletion allowed |
|||
editable |
Update allowed |
|||
fields (Deprecated) |
List of ControlBehavior |
Details about the control behavior linked to the field |
||
formSearchHidden |
Form search hidden |
|||
insertable |
Creation allowed |
|||
type |
Type of the formConfig |
3.173. FormConfigType
Type of form config
Type : enum (TIMESHEET, SCHEDULE, PROJECT, SEARCH_PROJECT, PHASE, SUB_PHASE, PROJECT_TASK, SEARCH_PROJECT_TASK, SEARCH_EMPLOYEE, EMPLOYEE, SEARCH_CUSTOMER, CUSTOMER, SEARCH_CONTACT, CONTACT, SEARCH_EVENT, EVENT, SEARCH_ISSUE, ISSUE, ISSUE_TASK, SEARCH_SPRINT_CARDS, LEAVE_REQUEST, CUSTOM_REQUEST, SEARCH_PROJECT_EVENT, SEARCH_LEAVE_REQUEST_EMPLOYEE, SEARCH_LEAVE_REQUEST_MANAGER, SEARCH_APPROVAL, SEARCH_TIMESHEET_ENTRY, SEARCH_SCHEDULE, SEARCH_EXPENSE_REPORT_EMPLOYEE, SEARCH_EXPENSE_REPORT_MANAGER, SEARCH_CUSTOM_REQUEST, OPPORTUNITY, OPPORTUNITY_LINE, QUOTATION, QUOTATION_LINE, SALES_ORDER, SALES_ORDER_LINE, SALES_BILLING_TABLE, SALES_INVOICE, DELIVERY, DELIVERY_LINE, PRODUCTION_TO_BE_BILLED, PIPELINE_STAGE, SEARCH_PIPELINE_STAGE, QUOTE, QUOTE_LINE, PURCHASE_ORDER, PURCHASE_ORDER_LINE, PURCHASE_BILLING_TABLE, PURCHASE_INVOICE, RECEPTION, TEMPORARY_PURCHASE_INVOICE, SEARCH_OPPORTUNITY, SEARCH_QUOTATION, SEARCH_SALES_ORDER, SEARCH_SALES_BILLING_TABLE, SEARCH_SALES_INVOICE, SEARCH_DELIVERY, SEARCH_PRODUCTION_TO_BE_BILLED_EMPLOYEE, SEARCH_PRODUCTION_TO_BE_BILLED_MANAGER, SEARCH_QUOTE, SEARCH_PURCHASE_ORDER, SEARCH_PURCHASE_BILLING_TABLE, SEARCH_PURCHASE_INVOICE, SEARCH_RECEPTION, SEARCH_TEMPORARY_PURCHASE_INVOICE, SEARCH_SCHEDULE_BY_PROJECT, SEARCH_SCHEDULE_BY_EMPLOYEE, SEARCH_SCHEDULE_TIMESTAMPED, SEARCH_SCHEDULE_WORKLOAD)
3.174. GeneralAccountBase
General account (ident example AKSAS22106800)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
General account label |
3.175. GeneralAccountCommon
General account
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
General account label |
|||
number |
General account number |
3.176. GeographicalDepartment
Geographical department
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the geographical department |
|||
companyId |
The id of the company |
|||
id |
Id in database |
|||
name |
Name of the geographical department |
|||
regionId |
The id of the region |
3.177. HistoryEntry
State of a project
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
Action of the modification |
|||
changeTracking |
Date and user in case of creation and modification |
|||
comment |
Comment of the modification |
|||
entryType |
Type of the entry |
|||
fieldName |
Name of the modified field |
|||
historyType |
Type of the modified object |
|||
id |
ID of the modification |
|||
objectId |
ID of the modified object |
|||
valueAfter |
Value after the modification |
|||
valueBefore |
Value before the modification |
3.178. HistoryEntryReadOption
ReadOption of a HistoryEntry
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the history entry |
Enum: CHANGE_TRACKING |
3.180. HistoryType
Type of the modified object
Type : enum (ISSUE, TASK, OPPORTUNITY, QUOTATION, SALES_ORDER, SALES_INVOICE, SALES_BILLING_TABLE, DELIVERY, QUOTE, PURCHASE_ORDER, PURCHASE_INVOICE, PURCHASE_BILLING_TABLE, RECEPTION, CONTACT, EMPLOYEE, EVENT, CUSTOMER, PROJECT)
3.181. Holiday
Holiday
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
date |
Date of the holiday |
date-time |
||
type |
Type of holiday |
3.182. IBAN
Details about the IBAN of a people
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountNumber |
Account number - 11 digits max |
|||
country |
Country code of the address in the database |
|||
key |
Key of the IBAN |
3.183. IdIdentifiable
Basic type for all pojos with an API ID
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
3.184. InternationalBankAccountDetails
International bank account details
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
bank |
Details to identify the international bank |
|||
holder |
Holder of the international bank |
3.185. InternationalBankHolder
Holder of the international bank
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountNumber |
Account number |
|||
accountType |
Type of the account for the holder |
|||
firstName |
The first name of the holder |
|||
name |
The name of the holder |
3.186. InternationalBankIdentification
Details to identify the international bank
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
bankAddress |
Details about bank address |
|||
bankCode |
The code of the bank |
|||
bankName |
The name of the bank |
|||
bankName2 |
The name 2 of the bank |
|||
bankType |
The type of the bank |
3.187. InventoryAndPackaging
Details about Inventory and Packaging
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
packagingType |
The packaging type of the item |
|||
packagingUnit |
The packaging unit of the item |
double |
3.189. IssueBase
Issue base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
3.190. IssueCommon
Issue common
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
number |
The number of the issue. |
|||
title |
The title of the issue. |
3.191. Item
Item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountSettings |
Accounting information for an item. |
|||
billingMode |
defaut billing mode for the item |
|||
category |
All details about the category of the product |
|||
categoryId |
The Id of the category |
|||
comment |
Comment on the product |
|||
companyCode |
The company code |
|||
customData |
Map of CustomData |
All custom data to update |
||
entityCode |
The entity code |
|||
family (Deprecated) |
The category of the product |
|||
grouping |
The grouping of the product |
|||
id |
Id in database |
|||
inventory |
Returns true if the product is in the inventory |
|||
inventoryAndPackaging |
Details about Inventory and Packaging |
|||
name |
Identification name |
|||
productionEstimatedDuration |
Estimated duration in minutes |
double |
||
quantityPrecision |
Number of decimals for this item quantity |
double |
||
reference |
The reference of the product |
|||
shortName |
Abbreviated designation |
|||
subCategory |
All details about the sub-category of the product |
|||
subCategoryId |
The Id of the sub-category |
|||
subFamily (Deprecated) |
The sub-category of the product |
|||
unitPricePrecision |
Number of decimals for this item unit price |
double |
3.192. ItemAccountingInfo
Accounting information for an item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
disabledDate |
Disabled date of the purchased item. |
date |
||
exportCostAccount |
Number of the export cost account set for purchased item export transactions. |
|||
exportGroupAccount |
Number of the export group account set for purchased item export group transactions. |
|||
intraComCostAccount |
Number of the intra-community cost account set for purchased item intracom transactions. |
|||
intraComGroupAccount |
Number of the intra-community group account set for purchased item intracom group transactions. |
|||
intraComInternalAccount |
Number of intra-community internal account set for purchased item intracom internal transactions. |
|||
intraComSubscriptionAccount |
Number of the intra-community subscription account set for purchased item intracom subscription transactions. |
|||
localCostAccount |
Number of the local cost account set for purchased item local transactions. |
|||
localGroupAccount |
Number of the local group account set for purchased item local group transactions. |
|||
localInternalAccount |
Number of the local internal account set for purchased item local internal transactions. |
|||
localSubscriptionAccount |
Number of the local subscription account set for purchased item local subscription transactions. |
|||
marketEndDate |
End of market of the purchased item. |
date |
||
reverseVAT |
Set the purchased item with reverse VAT liability. |
|||
toBeEstablishedAccount |
To be established account |
|||
vatCode |
X |
Code of the VAT tax rate for the purchased item. |
3.193. ItemBase
Item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
3.194. ItemCommon
Details about the commons item's properties
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
grouping |
The grouping of the product |
|||
id |
Id in database |
|||
name |
The name of the product |
|||
reference |
The reference of the product |
3.195. ItemLine
ItemLine
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
additionalFreeFields |
Additional free fields of a line |
|||
afterTaxAmountTotal |
Total After-Tax amount expressed in company currency |
double |
||
afterTaxAmountTotalCurrency |
Total After-Tax amount in the currency |
double |
||
amountTotal |
Total amount expressed in company currency |
double |
||
amountTotalCurrency |
Total amount in the currency |
double |
||
complementName |
Description of the line |
|||
discount |
Discount applied |
|||
endDate |
Period end date |
date-time |
||
forcedVat |
Forced VAT for the line |
|||
generalAccount |
General Account |
|||
id |
Id in database |
|||
item |
Details about the item |
|||
itemId |
The Id of the product |
|||
managementObjectId |
Id of the management object |
|||
name |
Name of the line |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
quantity |
Quantity of the product |
double |
||
rankNumber |
Rank number of the line |
double |
||
resource |
Resource allocated to complete the task |
|||
resourceId |
Id of the resource allocated to complete the task |
|||
startDate |
Period start date |
date-time |
||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
totalPrice |
Total price before discount expressed in company currency (unit price * quantity) |
double |
||
totalPriceCurrency |
Total price before discount in the currency (unit price * quantity) |
double |
||
unitPrice |
Unit price of the product expressed in company currency |
double |
||
unitPriceCurrency |
Unit price of the product expressed in company currency. The value in this field is not stored. Upon retrieval, it is calculated based on the rate in effect on the date of the management sales object. |
double |
||
vat1 |
Details about the first VAT rate |
|||
vat2 |
Details about the second VAT rate |
|||
vatAmount1 |
Amount expressed in company currency with the first VAT |
double |
||
vatAmount1Currency |
Amount in currency for the first VAT |
double |
||
vatAmount2 |
Amount expressed in company currency for the second VAT |
double |
||
vatAmount2Currency |
Amount in currency for the second VAT |
double |
3.196. JournalEntryNumberingBase
Numbering of the fiscal year journal entries
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
fiscalYearId |
Id of the fiscalYear |
|||
id |
Id in database |
|||
prefix |
Prefix of the JournalEntryNumbering |
3.198. LinkDirectionEnum
A filation link type can be set with a link direction
Type : enum (ASCENDING, DESCENDING, TRANSVERSE, NOT_APPLICABLE)
3.199. LinkedObjectType
Type of publish.
Type : enum (CUSTOMER, CONTACT, OPPORTUNITY, EVENT, CARD, ISSUE, EXPENSE, EXPENSE_REPORT, QUOTATION, SALES_ORDER, QUOTE, PURCHASE_ORDER, PURCHASE_INVOICE, INVOICE, PROJECT, SUPPLIER, DELIVERY, EMPLOYEE, CONTRACT, COMPANY, RECEPTION, SALES_BILLING_TABLE, PURCHASE_BILLING_TABLE, TRAINING_SESSION, ASSIGNED_TO, OTHER_THIRD_PARTY, PURCHASE_CONTRACT, DISBURSEMENT, PURCHASE_REQUEST, JOURNAL_ENTRY, RECEIPT, REGISTRATION, REGISTRATION_FILE, TASK, PURCHASE_REQUEST_LINE, PHASE, PROJECT_GROUP, MISCELLANEOUS_TRANSACTIONS, PART, SERVICE, PROSPECT, THIRD_PARTY_SITE, CUSTOMER_SITE, SUPPLIER_SITE, INTERNSHIP, PROJECT_TASK, CUSTOM_REQUEST, TEMPORARY_PURCHASE_INVOICE, FIXED_ASSET, SUB_PHASE, CAMPAIGN, DIRECT_DEBIT_MANDATE)
3.200. LinkedSalesmen
Salesman linked with a client
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customData |
Map of CustomData |
The custom data (when present) |
||
customerId |
Ident of the customer |
|||
employee |
Details about the employee |
|||
employeeId |
Ident of the employee aka salesmen |
|||
id |
Id in database |
|||
mainLinkedSalesman |
True if the linked salesman is the main linked salesman |
3.201. LinkedSalesmenReadOption
Options used to get additional information when performing a linked salesmen's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the linked salesmen |
Enum: CUSTOM_DATA |
3.202. LocationStatusBase
Basic information for Status of the maintained product.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the locations status. |
|||
id |
Id in database |
|||
name |
Name of the location status. |
3.203. LossArgument
Arguments to lose
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
archiveReasonId |
The ID of the archive reason. |
|||
comment |
Comment |
|||
lossDate |
Date of loss of opportunity |
date-time |
||
stageId |
The ID of the stage |
3.204. Mail
Represents all information needed to send a mail (recipient, subject and body)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
body |
Content of the mail as a text |
|||
cc |
List of [string] |
Mail carbon copy recipients |
||
cci |
List of [string] |
Mail hidden carbon copy recipients |
||
from |
Mail sender |
|||
replyTo |
Mail reply to |
|||
title |
Mail title |
|||
to |
List of [string] |
Mail recipients |
3.205. ManagementCustomerCriteria
Criteria used on Customer when doing a Customer search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountManagerId |
The ID of the account manager for the customer |
|||
categoryId |
Category of the customer |
|||
code |
Name of the customer |
|||
id |
Ident of the customer |
|||
salesmanId |
The ID of the sales man for the customer |
|||
sectorId |
Sector of the customer |
|||
subCategoryId |
Subcategory of the customer |
|||
type |
Type of the customer (between PROSPECT and CUSTOMER) |
3.206. ManagementObject
Management object (pièce de gestion)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountingJournal |
Details of the accounting journal |
|||
accountingJournalId |
ID of Accounting Journal |
|||
afterTaxAmount |
After-Tax amount expressed in company currency |
double |
||
afterTaxAmountCurrency |
After-Tax amount in the currency |
double |
||
approvalDate |
Date of approval |
date-time |
||
approvalState |
State of approval |
|||
assignmentIndicator |
Specifies the type of project and phase: mono project and mono phase, mono project and multi phase, or multi project. |
|||
changeTracking |
||||
companyCode |
The company code |
|||
companyId |
ID of the company |
|||
conditionOfPayment |
||||
currency |
Currency used in the management object |
|||
currencyCode |
Code of the currency used in the management object |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
date |
Date on the management object |
date-time |
||
description |
Description |
|||
entityCode (Deprecated) |
The entity code |
|||
exchangeRate |
The currency's exchange rate |
double |
||
fiscalYear |
Belonging fiscal year |
|||
fiscalYearId |
Id of the fiscalYear |
|||
group |
Group object |
|||
id |
Id in database |
|||
internal |
Internal object |
|||
manager |
Details of the employee |
|||
managerId |
Id of the manager |
|||
methodOfPayment |
Method of payment |
|||
name |
Name of the management object |
|||
number |
The number of the management object |
|||
payment (Deprecated) |
Deprecated : Use conditionOfPayment instead |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
preTaxAmount |
Pre-Tax Amount expressed in company currency |
double |
||
preTaxAmountCurrency |
Pre-Tax Amount in the currency |
double |
||
pricingMethod |
Details about the pricing method. The method by which pricing is to be determined. |
|||
pricingMethodId |
The id of the pricing method |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
thirdPartyId |
The Id of the third-party |
|||
thirdPartyToBillId |
The Id of the third-party to bill |
|||
type |
Example : QUOTATION |
3.207. ManagementObjectBase
Basic information on the management object (pièce de gestion)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Name of the management object |
|||
number |
The number of the management object |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
3.208. ManagementObjectBatchResult
Object containing :
- the ids of the successfully treated management objects
- the ids of the management objects with errors
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
errors |
List of ErrorMessage |
Contains a list of detailed error messages related to the processing of each identifier. |
||
idsOnError |
List of [string] |
Ids of the management object not processed in batches |
||
idsOnSuccess |
List of [string] |
Ids of the management object processed in batches |
||
managementObjectType |
Type of the management object processed in batches |
3.209. ManagementObjectCommon
Details on common properties of management object (pièce de gestion)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
afterTaxAmount |
After-Tax amount expressed in company currency |
double |
||
changeTracking |
||||
companyCode |
The company code |
|||
companyId |
ID of the company |
|||
currency |
Currency used in the management object |
|||
currencyCode |
Code of the currency used in the management object |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
date |
Date on the management object |
date-time |
||
description |
Description |
|||
entityCode (Deprecated) |
The entity code |
|||
id |
Id in database |
|||
name |
Name of the management object |
|||
number |
The number of the management object |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
preTaxAmount |
Pre-Tax Amount expressed in company currency |
double |
||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
thirdPartyId |
The Id of the third-party |
|||
type |
Example : QUOTATION |
3.210. ManagementObjectCriteria
Criteria used to get more details about the management object.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
afterTaxAmount |
After tax amount of the management object |
|||
approvalDate |
Approval date of the management object |
|||
approvalState |
Approval state of the management object |
|||
companyCode |
Company code of the management object |
|||
creationDate |
Creation date of the management object |
|||
currencyCode |
Currency code of the currency used in the management object |
|||
customData |
Map of Clause |
The custom data (when present) |
||
date |
Date of the management object |
|||
description |
Description of the management object |
|||
entityCode |
Entity code of the management object |
|||
fiscalYearId |
Id of the fiscal year |
|||
group |
True if group |
|||
id |
ID of the management object |
|||
internal |
True if management object is internal |
|||
journalId |
Id of the journal |
|||
managerId |
Id of the manager linked with the management object |
|||
methodOfPayment |
Method of payment of the management object |
|||
name |
Name of the management object |
|||
preTaxAmount |
Pre tax amount of the management object |
|||
thirdPartyId |
Id of the third party |
|||
thirdPartyToBillId |
Id of the third party to bill |
|||
validationDate |
Validation of the management object |
3.211. ManagementObjectLine
Management object line (ligne de pièce de gestion)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
additionalFreeFields |
Additional free fields of a line |
|||
afterTaxAmountTotal |
Total After-Tax amount expressed in company currency |
double |
||
afterTaxAmountTotalCurrency |
Total After-Tax amount in the currency |
double |
||
amountTotal |
Total amount expressed in company currency |
double |
||
amountTotalCurrency |
Total amount in the currency |
double |
||
complementName |
Description of the line |
|||
generalAccount |
General Account |
|||
id |
Id in database |
|||
managementObjectId |
Id of the management object |
|||
name |
Name of the line |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
quantity |
Quantity of the product |
double |
||
rankNumber |
Rank number of the line |
double |
||
resource |
Resource allocated to complete the task |
|||
resourceId |
Id of the resource allocated to complete the task |
|||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
totalPrice |
Total price before discount expressed in company currency (unit price * quantity) |
double |
||
totalPriceCurrency |
Total price before discount in the currency (unit price * quantity) |
double |
||
unitPrice |
Unit price of the product expressed in company currency |
double |
||
unitPriceCurrency |
Unit price of the product expressed in company currency. The value in this field is not stored. Upon retrieval, it is calculated based on the rate in effect on the date of the management sales object. |
double |
3.212. ManagementObjectLineCommon
Common properties of management object line
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
amountTotal |
Total amount expressed in company currency |
double |
||
amountTotalCurrency |
Total amount in the currency |
double |
||
id |
Id in database |
|||
managementObjectId |
Id of the management object |
|||
name |
Name of the line |
|||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the project task of the project |
|||
projectTaskId |
Id of the project task |
|||
quantity |
Quantity of the product |
double |
||
rankNumber |
Rank number of the line |
double |
||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
|||
unitPrice |
Unit price of the product expressed in company currency |
double |
||
unitPriceCurrency |
Unit price of the product expressed in company currency. The value in this field is not stored. Upon retrieval, it is calculated based on the rate in effect on the date of the management sales object. |
double |
3.213. ManagementObjectLineCriteria
Criteria used to get more details about the management object line.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
additionalFreeFieldCriteria |
||||
dutiableCriteria |
||||
endDate |
End period clause |
|||
generalAccountNumber |
||||
grouping |
Grouping of the item |
|||
id |
||||
phaseId |
||||
projectCriteria |
Criteria on project linked to the line |
|||
projectId |
||||
reference |
Reference of the item |
|||
resourceId |
Resource allocated to complete the task |
|||
startDate |
Start period clause |
|||
subPhaseId |
3.214. ManagementObjectType
Type of the management object
Type : enum (QUOTATION, SALES_ORDER, QUOTE, PURCHASE_ORDER, CUSTOM_REQUEST, PURCHASE_INVOICE, EXPENSE_REPORT, EXPENSE, INVOICE, SALES_BILLING_TABLE, PURCHASE_BILLING_TABLE, RECEPTION, DELIVERY, PRODUCTION)
3.215. ManagementProjectCriteria
Criteria used on Project when doing a Project search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activityId |
||||
categoryId |
||||
companyId |
The Id of the company |
|||
customerId |
||||
customerProjectId |
Ident of the project (equivalent to the code of the project) |
|||
departmentId |
||||
divisionGroupingId |
||||
divisionId |
||||
entityId |
||||
financialManagerId |
||||
id |
||||
managerId |
||||
name |
||||
productionManagerId |
||||
projectGroupCode |
||||
projectState |
||||
referentialDate |
Date à laquelle l'affaire doit être active (en prod) |
date-time |
||
salesManagerId |
||||
subCategoryId |
||||
subCategoryLevel2Id |
||||
tag |
Unused at the moment |
|||
yearId |
Ident of the year |
3.216. ManagerVisibilityCriteria
Manager's criteria
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
includeManager |
Include manager in the search result |
|||
includeResourcesTwoManagementLevelsBelow |
Include resources from two management levels below (N-2) in the search result |
|||
managerId |
Id of the manager |
3.217. Message
A message is a combination of a Mail (used to store standard information for sending a mail) and functional information. This functional information is processed by backend service to compute standard information for sending mail like an employee's email address.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
attachFile |
Location of the file to be attached. |
|||
ccRecipients |
List of MessageRecipient |
List of recipients to be included in CC (carbon copy). |
||
cciRecipients |
List of MessageRecipient |
List of recipients to be included in BCC (blind carbon copy - CCI). |
||
All details required to send an email (recipients, subject, body). |
||||
publishedDocuments |
List of PublishedDocument |
List of documents to be published as attached files. |
||
replyTo |
Mail recipient for reply-to. |
|||
toRecipients |
List of MessageRecipient |
List of primary recipients. |
3.218. MessageRecipient
Recipient of a message
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
address |
The email address of the recipient. |
|||
id |
Id in database |
|||
summary |
A brief summary or description of the recipient. |
|||
type |
Type of message recipient. |
3.219. MessageRecipientType
Message recipient type
Type : enum (USER, EMPLOYEE, CONTACT, TEAM, MAIL_ADDRESS)
3.220. MethodOfPayment
Method of payment
Type : enum (CREDIT_CARD, CHECK, CASH, CHECK_LETTER, DIRECT_DEBIT, INTER_BANK_PAYMENT_DOCUMENT, BANK_DRAFT, BANK_TRANSFER, BANK_TRANSFER_CURRENCY, OTHER)
3.221. NoneSEPA
International bank detail
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
beneficiary |
Details of the beneficiary's international bank account, including identification and account holder information. |
|||
defaultBankDetail |
Set as true if this international bank detail will be used by default. |
|||
intermediate |
Details of the intermediate's international bank account, including identification and account holder information. |
3.222. ObjectHistoryLink
A link between a target object and other objects
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
objectId |
Id of the object linked to a target object |
|||
objectType |
Example : CUSTOMER |
|||
targetId |
Id of target object |
3.223. ObjectLink
Link between an event and an object
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
eventId |
ID of the event |
|||
id |
Id in database |
|||
number |
Number or code of the third party of the object link |
|||
objectLinkId |
ID of the object link |
|||
parentThirdPartyId |
ID of the parent third party of the object link |
|||
title |
Name of the third party of the object link |
|||
type |
Details about the type of the object link |
3.224. ObjectLinkReadOption
Options used to get additional information when doing a ObjectLink search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of ObjectLinkType |
List of options used to get more details about the object link |
3.225. ObjectLinkRef
Link ref between an event and an object
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
objectLinkId |
ID of the object link |
|||
type |
Details about the type of the object link |
3.226. ObjectLinkType
Type of the link between an event and another management object
Type : enum (PROJECTS, PHASES, SUBPHASES, PROJECTTASKS, SALEQUOTATIONS, SALEORDERS, SALEINVOICES, SALES_BILLING_TABLES, DELIVERIES, RECEPTIONS, PURCHASEORDERS, PURCHASEINVOICES, PURCHASEQUOTATIONS, PURCHASE_BILLING_TABLES, CONTRACTS, CONTRACTSERVICES, ISSUES, ISSUETASKS, OPPORTUNITY, TRAINING_SESSIONS, TRAINING_COURSES, CAMPAIGNS, PURCHASE_REQUESTS, PURCHASE_RECEPTIONS, DIRECT_DEBIT_MANDATES, SUPPLIER_CONTRACTS)
3.227. ObjectLinksCampaignsCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
campaignId |
ID of the campaign. |
3.228. ObjectLinksProjectsCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
phaseId |
ID of the phase. |
|||
projectId |
ID of the project. |
|||
projectTaskId |
ID of the project task. |
|||
subPhaseId |
ID of the subphase. |
3.229. ObjectLinksPurchaseCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
billingTable |
ID of the billing table. |
|||
invoiceId |
ID of the purchase invoice. |
|||
orderId |
ID of the purchase order. |
|||
quoteId |
ID of the quote. |
|||
receptionId |
ID of the reception. |
|||
request |
ID of the purchase request. |
3.230. ObjectLinksSalesCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
billingTableId |
ID of the billing table. |
|||
deliveryId |
ID of the delivery. |
|||
directDebitMandateId |
ID of the direct debit mandate. |
|||
invoiceId |
ID of the invoice. |
|||
opportunityId |
ID of the opportunity. |
|||
orderId |
ID of the order. |
|||
quotationId |
ID of the quotation. |
3.231. ObjectLinksSupportsCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
contractId |
ID of the contract. |
|||
contractServiceId |
ID of the contract service. |
|||
issueId |
ID of the issue. |
|||
supplierContractId |
ID of the supplier contract. |
|||
taskId |
ID of the task. |
3.232. ObjectLinksTrainingsCriteria
Criteria used on object linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
courseId |
ID of the course. |
|||
sessionId |
ID of the session. |
3.233. Opportunity
Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activity |
All the information needed about the activity |
|||
activityId |
Id of the activity |
|||
actualSignatureDate |
Actual Signature date for the Opportunity |
date-time |
||
address |
All the information needed about the address of the customer location |
|||
addressId |
Id of the address |
|||
amount |
Amount of the opportunity |
double |
||
amountCurrency |
Amount in currency of the opportunity |
double |
||
archiveComment |
Comment about the archive reason |
|||
archiveReason |
Details about the archive reason. |
|||
archiveReasonId |
The ID of the archive reason |
|||
changeTracking |
Date and user of creation and modification |
|||
city (Deprecated) |
The city of the opportunity. |
|||
code |
The code of the opportunity. |
|||
companyCode |
The code of the company. |
|||
contacts |
List of Contact |
List of an opportunity's Contact with their details |
||
country (Deprecated) |
The country of the opportunity. |
|||
currency |
Details about the Currency |
|||
currencyCode |
Code of the currency |
|||
currencyId |
ID of the currency. |
|||
customData |
Map of CustomData |
The custom data (when present) |
||
customer |
All the information needed about the customer |
|||
customerId |
Id of the customer |
|||
customerLocation |
All the information needed about the customer location |
|||
customerLocationId |
Id of the customer location |
|||
department |
All the information needed about the department |
|||
departmentId |
Id of the department |
|||
description |
The description of the opportunity. |
|||
endCustomer |
All the information needed about the end customer |
|||
endCustomerId |
Id of the end customer |
|||
entity |
All the information needed about the entity |
|||
entityId |
Id of the entity |
|||
exchangeRate |
The currency's exchange rate |
double |
||
expectedSignatureDate |
The expected signature date of the opportunity |
date-time |
||
financialManager |
All the information needed about the Financial Manager |
|||
financialManagerId |
Id of the Financial Manager |
|||
id |
Id in database |
|||
lines |
List of OpportunityLine |
List of an opportunity's lines with their details |
||
lossDate |
Loss date of the Opportunity |
date-time |
||
mainContact |
All the information needed about the Main Contact |
|||
mainContactId |
Id of the Min Contact |
|||
name |
The name of the opportunity. |
|||
openingDate |
The opening date of the opportunity |
date-time |
||
origin |
The origin of the opportunity. |
|||
originType |
All the information needed about the origin type |
|||
originTypeId |
Id of the origin type |
|||
pipe |
All the information needed about the pipe |
|||
pipeId |
Id of the pipe |
|||
postalCode (Deprecated) |
The postal code of the opportunity. |
|||
probabilityLevel |
The probability level. |
|||
productionEndDate |
The production end date of the opportunity |
date-time |
||
productionManager |
All the information needed about the Production Manager |
|||
productionManagerId |
Id of the Production Manager |
|||
productionStartDate |
The production start date of the opportunity |
date-time |
||
projectCategory |
All the information needed about the project Category |
|||
projectCategoryId |
Id of the Project Category |
|||
projectManager |
All the information needed about the Project Manager |
|||
projectManagerId |
Id of the Project Manager |
|||
projectSubCategory |
All the information needed about the Project Sub Category |
|||
projectSubCategoryId |
Id of the Project Sub Category |
|||
projectSubCategoryLevel2 |
All the information needed about the project Sub Category Level 2 |
|||
projectSubCategoryLevel2Id |
Id of the project Sub Category Level 2 |
|||
quantity |
Quantity of the opportunity |
double |
||
salesManager |
All the information needed about the Sales Manager |
|||
salesManagerId |
Id of the Sales Manager |
|||
stage |
All the information needed about the stage |
|||
stageDate |
Date of the stage. This date corresponds to the creation date or the last change date of the stage. |
date-time |
||
stageId |
Id of the stage |
|||
strategic |
Strategic opportunity |
|||
tags |
List of TagLinked |
Details about the tag linked |
||
title |
The title of the opportunity. |
|||
weightingCoefficient |
The opportunity's weighting coefficient. |
double |
||
year |
All the information needed about the year |
|||
yearId |
Id of the year |
3.234. OpportunityBase
OpportunityBase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the opportunity. |
|||
id |
Id in database |
|||
name |
The name of the opportunity. |
3.235. OpportunityCriteria
Criteria of an Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activityId |
ID of the activity |
|||
actualSignatureDate |
Actual Signature date for the Opportunity |
|||
archiveComment |
Comment about the archive reason |
|||
archiveReasonId |
The ID of the archive reason |
|||
changeTracking |
Change tracking criteria |
|||
code |
Code of the opportunity |
|||
companyId |
ID of the company |
|||
country |
Country of the Opportunity |
|||
creationDate (Deprecated) |
Creation Date of the Opportunity |
|||
currencyId |
ID of the currency |
|||
customData |
Map of Clause |
The custom data details (when present) |
||
customerCode |
Code of the customer |
|||
customerCriteria |
Criteria on customer linked to the opportunity |
|||
customerId |
Id of the customer |
|||
customerLocationId |
Ident of the customer location |
|||
customerLocationName |
Name of the customer Location |
|||
customerSiteId |
Ident of the customer site |
|||
description |
Description of the Opportunity |
|||
endCustomerCode |
Code of the end Customer |
|||
endCustomerId |
Ident of the end customer |
|||
entityId |
ID of the entity |
|||
expectedSignatureDate |
Expected Signature Date of the Opportunity |
|||
financialManagerCode |
Ident of the Financial Manager |
|||
financialManagerId |
Ident of the Financial Manager |
|||
id |
Ident of the opportunity |
|||
lossDate |
Loss date of the Opportunity |
|||
name |
Name of the opportunity |
|||
openingDate |
Opening Date of the Opportunity |
|||
origin |
Origin of the opportunity |
|||
originTypeCode |
Code of the Origin Type |
|||
originTypeId |
Ident of the Origin Type |
|||
pipeCode |
Code of the pipe |
|||
pipeId |
Ident of the pipe |
|||
probabilityLevel |
Probability level of the opportunity |
|||
productionEndDate |
Production End Date of the Opportunity |
|||
productionManagerCode |
Code of the Production Manager |
|||
productionManagerId |
Ident of the Production Manager |
|||
productionStartDate |
Production Start Date of the Opportunity |
|||
projectCategoryCode |
Code of the Category of the Opportunity |
|||
projectCategoryId |
Ident of the Category of the Opportunity |
|||
projectManagerCode |
Code of the Project Manager |
|||
projectManagerId |
Ident of the Project Manager |
|||
projectSubCategoryCode |
Code of the Sub Category of the Opportunity |
|||
projectSubCategoryId |
Ident of the Sub Category of the Opportunity |
|||
projectSubCategoryLevel2Code |
Code of the Sub Category Level 2 of the Opportunity |
|||
projectSubCategoryLevel2Id |
Ident of the Sub Category Level 2 of the Opportunity |
|||
readOption |
Options for retrieving extra information concerning the opportunity |
|||
salesManagerCode |
Code of the Sales Manager |
|||
salesManagerId |
Ident of the Sales Manager |
|||
stageCode |
Code of the Stage |
|||
stageDate |
Date of the stage. This date corresponds to the creation date or the last change date of the stage. |
|||
stageId |
Ident of the Stage |
|||
stageStatus |
Status of the Stage |
|||
strategic |
Strategic opportunity |
|||
tag |
You can fill in the code or name of the opportunity in this field |
|||
tagId |
ID of tag |
3.236. OpportunityLine
Line of an Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE) |
|||
amount |
Amount of the line |
double |
||
amountCurrency |
Amount in currency of the line |
double |
||
amountTotal |
Amount of the line |
double |
||
amountTotalCurrency |
Amount in currency of the line |
double |
||
comment |
Comment of the line |
|||
currency |
Details about the currency |
|||
currencyCode |
Code of the currency |
|||
customData |
Map of CustomData |
The custom data details (when present) |
||
id |
Id in database |
|||
margin |
Margin of the line |
double |
||
opportunityId |
ID of the opportunity |
|||
opportunityType |
Details about the type |
|||
opportunityTypeId |
ID of the type |
|||
quantity |
Quantity of the line |
double |
||
recurrenceDuration |
Duration of the recurrence |
double |
||
recurrenceType |
Details about the recurrence Type |
|||
sortingNumber |
Sorting number of the line |
double |
3.237. OpportunityLineCriteria
Criteria of a Line of Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
opportunityId |
Ident of the opportunity |
|||
readOption |
Options for retrieving extra information concerning the line of opportunity |
3.238. OpportunityLineReadOption
ReadOption of an Line of Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the opportunity line |
Enum: TYPE, CUSTOM_DATA, FORM_CONFIG |
3.239. OpportunityReadOption
Options used to get additional information when doing an Opportunity search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the opportunity |
Enum: CUSTOMER, END_CUSTOMER, CUSTOMER_LOCATION, CHANGE_TRACKING, ADDRESS, ORIGIN_TYPE, CURRENCY, PIPE, SALES_MANAGER, PRODUCTION_MANAGER, FINANCIAL_MANAGER, PROJECT_MANAGER, STAGE, PROJECT_CATEGORY, PROJECT_SUBCATEGORY, PROJECT_CATEGORY_LEVEL2, ENTITY, YEAR, DEPARTMENT, ACTIVITY, CONTACT, MAIN_CONTACT, OPPORTUNITY_LINE, CUSTOM_DATA, ARCHIVE_REASON, TAGS, FORM_CONFIG, LINE_TYPE, LINE_CUSTOM_DATA, LINE_FORM_CONFIG |
3.240. OpportunityType
Type of an Opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the opportunity type |
|||
id |
Id in database |
|||
name |
Name of the opportunity type |
|||
recurrenceDuration |
Duration of the recurrence |
|||
recurrenceType |
Details about the recurrence type |
|||
valorizationType |
Details about the valorization type |
3.241. OriginType
OriginType
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
category |
The category of the origin type. |
|||
code |
The code of the origin type. |
|||
default |
Set as true to use this origin type by default. |
|||
endDate |
The end date of the origin type. |
date-time |
||
id |
Id in database |
|||
name |
The name of the origin type. |
|||
order |
The order (ranking) of this origin type |
double |
3.242. OriginTypeCategory
Origin Type Gategory
Type : enum (OTHERS, CUSTOMERS, PROSPECTS, DIRECTORY, EMPLOYEES, CAMPAIGNS, SUPPLIERS)
3.243. OtherThirdPartieBase
Other Third Partie Base (Autre Tiers)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the third party (customer, supplier, other third party). |
|||
id |
Id in database |
|||
name |
The name of the third party (customer, supplier, other third party). |
3.244. OtherThirdParty
Other third-party
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
address |
The address of the other third-party. |
|||
branch |
The branch office of the other third-party. |
|||
classification |
Classification of the other third-party. |
|||
code |
The code of the third party (customer, supplier, other third party). |
|||
comment |
All comment |
|||
documentNumber |
The number of the document related. |
|||
id |
Id in database |
|||
legalName |
Legal name of the other third-party. |
|||
legalName2 |
Legal name 2 of the other third-party. |
|||
monitor |
The employee who monitors this other third-party. |
|||
monitorId |
Id of the monitor |
|||
name |
X |
The name of the third party (customer, supplier, other third party). |
||
sector |
The business sector of the other third-party. |
|||
siren |
SIREN number |
|||
siret |
SIRET number |
|||
siteCode |
The third-party site code |
|||
type |
The type of the other third-party. |
|||
typeId |
Id of the type of the other third-party. |
3.245. OtherThirdPartyCriteria
Criteria used on Other Third-Party when doing an Other Third-Party Search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
branch |
The branch office of the other third-party |
|||
id |
Id of the other third-party |
|||
monitorId |
Id of the monitor |
|||
name |
Name of the other third-party |
|||
readOption |
Options used to get additional information when doing an Other Third-Party Search |
|||
siren |
SIREN number |
|||
siret |
SIRET number |
|||
siteCode |
The third-party site code |
|||
typeId |
Id of the type |
3.246. OtherThirdPartyReadOption
Options used to get additional information when doing an Other Third-Party Search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the other third party |
Enum: ADDRESS, TYPE, MONITOR |
3.247. OtherThirdPartyTypeBase
Type of Other Third-Party
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
X |
The code of the other third-party type |
||
id |
Id in database |
|||
name |
X |
The name of the other third-party type |
3.248. OwnershipType
Type of Ownership
Type : enum (EVERYBODY, ME, MY_TEAM, TEAM_I_OWN, TEAM_I_OWN_AND_ME, TEAM_N_N, TEAM_N_N_AND_ME, MY_SERVICE)
3.249. PatchElement
A JSONPatch as defined by RFC 6902
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
from |
X |
A JSON-Pointer @see https://tools.ietf.org/html/rfc6901 |
||
op |
X |
The operation to be performed |
Enum: ADD, REMOVE, REPLACE, TEST, MOVE, COPY, AK_APPEND, ADD, REMOVE, REPLACE, TEST, MOVE, COPY, AK_APPEND |
|
path |
X |
A JSON-Pointer @see https://tools.ietf.org/html/rfc6901 |
||
value |
The value to be used within the operations. |
3.250. PatchHolder
List of patches to apply to the idents specified
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
ids |
List of [string] |
Idents to patch |
||
patchElements |
List of PatchElement |
List of patches to apply |
3.251. Payment
Payment
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Payment code |
|||
day |
Day of the month on which the payment will be done |
double |
||
deadLine |
Number of days to carry out the payment |
|||
term |
Period of payment |
3.252. PeopleLink
People Link
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
defaultLink |
Determine the default people link used in the case. 'True' if the people link is the one to apply by default |
|||
id |
Id in database |
|||
linkSource |
Detail about the people link relationship between the path third party and another third party. |
|||
linkSourceId |
Id of the type of people link for the source third party. |
|||
linkTarget |
Detail about the people linkTarget relationship between the path third party and another third party. |
|||
linkTargetId |
Id of the type of people link for the target third party. |
|||
linkType |
A link can be set as a Management Link or a Filiation Link. |
|||
sourceThirdParty |
Detail about the third party. |
|||
sourceThirdPartyId |
Id of the source third party. |
|||
sourceThirdPartyType |
Type of the source third party linked (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
|||
targetThirdParty |
Detail about the third party |
|||
targetThirdPartyId |
Id of target third party to link. |
|||
targetThirdPartyType |
Type of the target third party linked (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
3.253. PeopleLinkCriteria
Criteria used on People Link when doing a People Link search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
defaultLink |
If true, the people link is the one set by default on the third party with the link |
|||
id |
||||
linkSourceId |
Id of the people link relationship between the path third party and another third party |
|||
linkTargetId |
Id of the people link relationship between a third party and the path third party |
|||
linkType |
A link can be set as a Management Link or a Filiation Link |
|||
readOption |
Options for retrieving extra information concerning the peopleLink |
|||
sourceThirdPartyId |
Id of the third party linked |
|||
sourceThirdPartyType |
Type of the source third party linked (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
|||
targetThirdPartyId |
Id of the target third party with people links |
|||
targetThirdPartyType |
Type of the third party with people links (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY) |
3.254. PeopleLinkReadOption
Options used to get additional information when doing a peopleLink's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the people link |
Enum: LINK_SOURCE, LINK_TARGET, SOURCE_THIRD_PARTY, TARGET_THIRD_PARTY |
3.255. PeopleLinkType
People Link Type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code for the type of People link. |
|||
companyCode |
The code of the company. |
|||
description |
The description for the type of People link. |
|||
id |
Id in database |
|||
linkDirection |
A filation link type can be set with a link direction |
|||
static |
A link can be set as static if it is not intended to be modified |
|||
type |
A link can be set as a Management Link or a Filiation Link |
3.256. PeopleLinkTypeCriteria
Criteria used on People Link Type when doing a Link Type search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
||||
companyCode |
||||
id |
||||
type |
A link can be set as a Management Link or a Filiation Link |
3.257. PeopleLinkTypeEnum
A link can be set as a Management Link or a Filiation Link
Type : enum (MANAGEMENT_LINK, FILIATION_LINK)
3.258. Period
Period
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
from |
Smaller date of the period |
date-time |
||
granularity |
To limit the granularity to a unit other than milliseconds, pass the units as the third parameter. DAY by default. |
|||
inclusivity |
Inclusivity. A [ indicates inclusion of a value. A ( indicates exclusion (for the smaller date of the period, use ) and ] for the bigger one). Inclusive by default. |
|||
to |
Bigger date of the period |
date-time |
3.259. PeriodGranularity
Granularity of a period
Type : enum (YEAR, MONTH, DAY, HOUR, MINUTE, SECOND)
3.260. Periodicity
Periodicity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Periodicity of payment (0 ⇒ Unique (default); 1 ⇒ Annual; 2 ⇒ Bi-annual; 3 ⇒ Quarterly; 4 ⇒ Monthly) |
|||
duration |
Duration in month |
double |
||
id |
Id in database |
|||
lineStartDate |
Start date of the line |
date-time |
||
startDate |
Date by which the periodicity is starting |
date-time |
||
tacitAgrement |
Returns true if the checkbox 'tacit renewal' is checked |
|||
term |
Returns true if not due, false if due |
3.262. PhaseBase
Phase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of a phase |
|||
id |
Id in database |
|||
name |
Name of a phase |
|||
order |
Order number of the project |
int32 |
||
project |
Details about the corresponding project |
|||
projectId |
ID of the corresponding project (i.e. Code of the project) |
3.263. PhaseState
State of a phase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the phase state |
|||
companyId |
ID of the company |
|||
default |
Set as true to use this phase state by default. Set as false by default |
|||
id |
ID of the phase state |
|||
name |
The name of the phase state |
3.264. PhaseStateCriteria
Criteria used on phase state when doing a phase state search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
||||
companyId |
||||
id |
||||
name |
3.265. Pipe
Pipe
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the pipe |
|||
company |
Details about the company |
|||
companyId |
ID of the company |
|||
defaultStageId |
ID of the default stage |
|||
endDate |
The end date of the template pipe |
date-time |
||
id |
Id in database |
|||
name |
Name of the pipe |
|||
right |
Details on the right to use this pipe. |
|||
stages |
List of Stage |
Stages of the pipe |
||
templatePipeId |
ID of the template pipe. |
|||
useRightAsDefault |
Set true to use the right defined in this pipe by default. |
3.266. PipeBase
Pipe base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the pipe |
|||
id |
Id in database |
|||
name |
Name of the pipe |
3.267. PipeCriteria
Criteria when doing a pipe search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the pipe |
|||
companyId |
ID of the company |
|||
defaultStageId |
ID of the default stage |
|||
id |
ID of the pipe |
|||
name |
The name of the pipe |
|||
readOption |
Options for retrieving extra information concerning the pipe |
|||
tag |
You can fill in the code or name of the pipe in this field |
|||
templatePipeId |
ID of the template pipe |
|||
validity |
Details about the validity of the pipe |
3.268. PipeReadOption
Options used to get additional information when doing a Pipe search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the pipe |
Enum: COMPANY, STAGES, STAGES_FORM_CONFIG |
3.269. PluginFeature
Plugin Feature
Type : enum (BRIDGE, CHORUS, EDOC, PRESTATIONS, UNIVERSIGN, API_GOOGLE, AKUITEO_SAAS)
3.270. Postpone
Object used to postpone management object lines.
The line date can be postponed by setting a precise date, shifting by a period, or resetting the date.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
exactDate |
Precise date to be updated. |
date-time |
||
period |
Period shift information for postponing the date. To use this field, type must be set to SHIFT_BY_PERIOD. |
|||
type |
X |
Defines how the date is postponed: either by exact date, period shift, or reset. |
3.271. PostponePeriod
Defines the number of occurrences for the postponement and the time unit, allowing the date to be modified based on a given period.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
numberOfOccurrency |
Number of times the period should be shifted. |
|||
shiftPeriod |
Time unit for shifting the period. |
3.272. PostponeType
Defines how the date postponement is handled
Type : enum (EXACT_DATE, SHIFT_BY_PERIOD, RESET_DATE)
3.273. PricingMethodBase
The method by which pricing is to be determined
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the pricing method |
|||
id |
The ID in database of the pricing methods |
|||
name |
The name given to the pricing method |
3.275. ProductionInformations
Production informations
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
billingTargetDay |
Billing target day of the month for the production to be billed. Empty if the billing mode is not production to be billed. |
int32 |
||
defaultDisplay |
Determines whether the production is the most frequently used and should be displayed by default. Set as 'True' if the production is to be displayed by default. |
|||
estimatedDuration |
The production estimated duration in minutes. Empty if the billing mode is not production to be billed. |
int32 |
||
linkedToAdvancePayments |
Returns true if the production is linked to advance payments. Set as 'false' by default. |
|||
targetDay |
Target day of the month for the production. Empty if the billing mode is not production to be billed. |
int32 |
||
team |
Details about the production team. |
|||
teamId |
ID of the production team |
3.276. ProductionTeamBase
Production team base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the production team |
|||
id |
Id in database |
|||
name |
Name of the production team |
3.277. Profession
Details about the profession of the people
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the Profession |
|||
id |
Id in database |
|||
name |
Name of the Profession |
3.278. ProfessionalCategory
Professional Category
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the Professional Category |
|||
companyId |
ID of the company |
|||
id |
Id in database |
|||
name |
Name of the Professional Category |
|||
ranking |
The professional category ranking in the list |
int32 |
3.279. ProjectBase
Project
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
companyCode |
Code of the company |
|||
customer |
Details of the customer |
|||
customerId |
Id of the project's customer |
|||
customerType |
Customer type |
|||
endCustomer |
Details of the customer |
|||
endCustomerId |
Id of the project's end customer |
|||
id |
Id in database |
|||
internal |
If the project is internal or not |
|||
leave |
Return true if the project is a leave project |
|||
leaveType |
Details about leave type |
|||
name |
Name of a project |
3.280. ProjectCommon
Shared information about projects, across domains.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
color |
Color of the project (hexadecimal code) |
|||
companyCode |
Code of the company |
|||
customer |
Details of the customer |
|||
customerId |
Id of the project's customer |
|||
customerType |
Customer type |
|||
endCustomer |
Details of the customer |
|||
endCustomerId |
Id of the project's end customer |
|||
id |
Id in database |
|||
internal |
If the project is internal or not |
|||
leave |
Return true if the project is a leave project |
|||
leaveType |
Details about leave type |
|||
name |
Name of a project |
|||
projectEnd (Deprecated) |
End date of a project |
date-time |
||
projectStart (Deprecated) |
Start date of a project |
date-time |
||
projectState |
State of the project |
|||
projectStateId |
Id of the state of the project |
3.281. ProjectCustomerType
Type of relation with the customers
Type : enum (ALL_CUSTOMERS, MULTI_CUSTOMERS, SINGLE_CUSTOMER)
3.282. ProjectFilterType
Type of filter on project
Type : enum (NONE, SCHEDULED_FOR_MONTH, WITH_MY_TIMESHEET, FROM_MANAGERS_IN_MY_DIVISION, FROM_MY_DIVISION, INTERNAL_IN_MY_DIVISION, FROM_MY_ENTITY, INTERNAL_IN_MY_ENTITY, MANAGED_BY_ME)
3.283. ProjectGroup
ProjectGroup
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the project group. |
|||
description |
Description of the project group. |
|||
id |
Id in database |
|||
name |
The name of the project group. |
3.285. ProjectState
State of a project
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the project state |
|||
companyCode (Deprecated) |
Code of the company |
|||
companyId |
ID of the company |
|||
id |
ID of the project state |
|||
name |
The name of the project state |
3.286. ProjectStateCriteria
Criteria used on project state when doing a project state search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
activeModule |
Example : EXPENSE_REPORTS |
|||
code |
||||
companyId |
||||
id |
||||
name |
||||
tag |
You can fill in the code or name of the tag in this field |
3.287. ProjectTaskBase
The Project task base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code (Deprecated) |
Code of the task |
|||
id |
Id in database |
|||
name |
Name of the task |
3.288. ProjectTaskCommon
The Project task common
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code (Deprecated) |
Code of the task |
|||
customer |
Details about the customer |
|||
customerId |
ID of the customer |
|||
description |
Description of the task |
|||
endDate |
End date of the task |
date-time |
||
id |
Id in database |
|||
name |
Name of the task |
|||
order |
Order number of the task |
int32 |
||
phase |
Details about the phase of the project. |
|||
phaseId |
ID of the phase |
|||
project |
All details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
startDate |
Start date of the task |
date-time |
||
subPhase |
Details about the sub-phase of the project |
|||
subPhaseId |
ID of the sub-phase |
3.289. ProjectTaskType
The parameters of different type of project task
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
byDefault |
Set as true to use this type of task by default when adding a new task. |
|||
code |
The code to give to this project task type |
|||
companyId |
ID of the company |
|||
id |
ID of the project task type |
|||
label |
The project task type name / label |
|||
rankNumber |
The project task type ranking in the list |
|||
type |
Example : TIME_BASED |
3.291. PublishArguments
Required arguments to publish a document.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
extension |
Document type |
|||
parameters |
List of PublishTemplateParameter |
Details about the template parameters |
||
saveDocument |
Return true if the generated document is linked to the business document. |
|||
template |
Details about the template |
3.292. PublishContextBase
Context for publication, destined for use by specific API
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
contextType |
Context of the publish |
|||
displayOptions |
Map of [string] |
Options for data display |
||
filters |
Map of [array] |
Filter for data selection discriminating by object IDs grouped by object type |
3.293. PublishTemplate
Details about the template used to publish.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The template code |
|||
defaultTemplate |
Return true if it's the default's template |
|||
endDate |
End of validity of the template |
date-time |
||
extensions |
List of [string] |
Extension types available for the document |
||
id |
Id in database |
|||
interactive |
Return true if the model needs any parameters to be generated |
|||
name |
The template name |
|||
order |
Order number |
int32 |
||
path |
Path where you can find the template. |
|||
publishType |
Publish type |
|||
type |
Details about the template type |
3.294. PublishTemplateParameter
Parameters of a Publish template.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
controlType |
Details about the type of the parameter |
|||
groupName |
Name of the parameter group |
|||
labelText |
Label of the parameter |
|||
nameField |
Name of the parameter |
|||
nameFieldNext |
Name of the next parameter |
|||
pattern |
Pattern of the parameter |
|||
required |
Return true if the paramater is required |
|||
selectionList |
List of PublishTemplateParameterChoice |
Details of each value of a LIST_BOX parameter |
||
value |
Value of the parameter |
3.295. PublishTemplateParameterChoice
If controlType is equal to LIST_BOX, there is a list of each object in the list
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
label |
The label |
|||
value |
The value |
3.296. PublishTemplateParameterType
Type of parameter.
Type : enum (TEXT_BOX, LIST_BOX, DATE_BOX, RADIO_BUTTON, CHECK_BOX, COMBO_BOX)
3.297. PublishTemplateType
Describe the Publish template type which is unique by code-modelId tuple. Allowed ModelId values depend on choosen code value.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the template type |
|||
modelDescription |
Description of the model |
|||
modelId |
ID of the model |
|||
name |
Name of the template type |
3.298. PublishType
Type of the published document.
Defines the type of document that can be published. Some objects can be published individually, while others support batch publishing. For batch publishing, use the type ending with 'LIST.'
Type : enum (OPPORTUNITY, QUOTATION, QUOTATION_LIST, SALES_ORDER, SALES_ORDER_LIST, SALES_INVOICE, SALES_INVOICE_LIST, SALES_BILLING_TABLE, SALES_BILLING_TABLE_LIST, DELIVERY, DELIVERY_LIST, QUOTE, PURCHASE_ORDER, PURCHASE_INVOICE, PURCHASE_BILLING_TABLE, RECEPTION, CUSTOMER, CUSTOM_REQUEST, EXPENSE_REPORT, EXPENSE, EXPENSE_REPORT_LIST, SCHEDULE, SCHEDULE_EMPLOYEE, TIMERECORDING, ISSUE, PRODUCTION_TO_BE_BILLED, OVERVIEW_HELPDESK, OVERVIEW_PURCHASE, OVERVIEW_SALES, OVERVIEW_SCHEDULE, OVERVIEW_TIMESHEET, OVERVIEW_STOCK, OVERVIEW_COMMON, OVERVIEW_MISCELLANEOUS, PROJECT, PROJECT_LIST, CONTACT, QUOTATION_EXPENSE_LINE, BANKING_INFORMATION)
3.299. PublishedDocument
Published Document.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
documentId |
Document ID |
|||
isDocument |
Return true if the document is available in Akuiteo |
|||
token |
Details about the published document (whether the publish is okay or not, where you can find the document, its size) |
3.300. RecipientContact
Contact recipient of a management object
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
companyId |
ID of the company |
|||
contactId |
The ID of the contact |
|||
The email of the contact recipient |
||||
firstName |
The first name of the contact recipient |
|||
id |
Id in database |
|||
name |
The name of the contact recipient . |
|||
title |
Civility of the contact recipient |
|||
type |
Example : IN_COPY |
3.302. RecurrenceType
Type of Recurrence
Type : enum (UNIQUE, ANNUALLY, HALF_YEARLY, QUARTERLY, MONTHLY)
3.303. RecurringAmountsInfo
Amounts calculated based on the recurrence period defined in the management object lines.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
afterTaxAmount |
After-tax amount in the company currency, calculated automatically, considering any recurrence |
double |
||
afterTaxAmountCurrency |
After-tax amount in the specified currency, calculated automatically, considering any recurrence |
double |
||
preTaxAmount |
Pre-tax amount in the company currency, calculated automatically, considering any recurrence |
double |
||
preTaxAmountCurrency |
Pre-tax amount in the specified currency, calculated automatically, considering any recurrence |
double |
||
vatAmount |
VAT amount expressed in the company currency |
double |
||
vatAmountCurrency |
VAT amount expressed in the specified currency |
double |
3.304. Region
Region
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the region |
|||
companyCode |
The code of the company linked to the region |
|||
companyId |
ID of the company |
|||
country |
The country where the region is located |
|||
countryId |
Id of the country where the region is located |
|||
id |
Id in database |
|||
name |
Name of the region |
3.305. Relationship
Relationship between an event and a third-party
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customerId |
ID of the customer of the relationship |
|||
detail |
Detail of the relationship |
|||
Email of the relationship |
||||
eventId |
ID of the event of the relationship |
|||
id |
Id in database |
|||
name |
Name of the relationship |
|||
parentThirdPartyId |
ID of the parent of the third party linked in this relationship. |
|||
phone |
Phone of the relationship |
|||
thirdPartyId |
ID of the third party linked in this relationship |
|||
type |
Detail about the type of the relationship |
3.306. RelationshipReadOption
Options used to get additional information when doing a Relationship search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of RelationshipType |
List of options used to get more details about the relationship |
3.307. RelationshipRef
Relationship ref between an event and a third-party
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
thirdPartyId |
ID of the third party linked in this relationship |
|||
type |
Detail about the type of the relationship |
3.308. RelationshipType
Type of a Relationship
Type : enum (CUSTOMER, PROSPECT, OPPORTUNITY, CONTACT, CT_CUSTOMER_SITE, EMPLOYEE, SUPPLIERS, SUPPLIERSITES, CT_SUPPLIER_SITE, OTHERTHIRDPARTIES, CUSTOMER_SITES)
3.310. ReplyEvent
Reply of an Event
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Reply state of the event |
3.311. ReplyEventCriteria
Criteria used on Event Service when doing a Find replies of events
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Ident of the reply event |
|||
name |
Name of the reply event |
3.312. SEPA
Details SEPA banking information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
bankDetails |
Details about the bank |
|||
bic |
Details about the BIC |
|||
iban |
Details about the IBAN |
3.313. SalesAddressBook
SalesAddressBook
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
contactId |
ID of the contact |
|||
customerId |
ID of the customer |
|||
gone |
True if the customer contact is gone |
|||
id |
Id in database |
|||
name |
Name of the sales adresse book |
|||
out |
True if the customer is closed or customer contact is closed |
|||
siteId |
ID of the site |
|||
type |
Type of the sales adresse book |
3.314. SalesAddressBookCriteria
Criteria used when doing a SalesAddressBook search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
searchType |
The search type of the address book |
Enum: NAME, PHONE_OR_EMAIL, NAME, PHONE_OR_EMAIL |
||
tag |
You can fill in the code, name, phone or email of the customer or contact in this field (Depends on searchType) |
3.315. SalesAddressBookType
Type of a SalesAddressBook
Type : enum (CUSTOMER, PROSPECT, CONTACT_CUSTOMER_SITE)
3.316. ScheduleBase
Schedules
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
actionCode |
Details about the action verb |
|||
actionCodeId |
ID of the action code |
|||
changeTracking |
Date and user in case of creation and modification |
|||
comment |
Comment of the calendar event |
|||
customer |
Details about the customer |
|||
customerId |
ID of the customer |
|||
date |
Date of the calendar event |
date-time |
||
description |
Description of the schedule |
|||
done |
Return True if the schedule is done |
|||
duration |
Duration of the calendar event |
double |
||
durations |
Duration in different units |
|||
employee |
Details about the employee |
|||
employeeId |
ID of the employee |
|||
guid |
Global identifier of the calendar event (for mobile version only) |
|||
id |
ID of the calendar event |
|||
location |
Location of the calendar event |
|||
phase |
Details about the phase |
|||
phaseId |
ID of the phase |
|||
project |
Details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the task |
|||
projectTaskId |
ID of the project |
|||
subPhase |
Details about the sub-phase |
|||
subPhaseId |
ID of the sub-phase |
|||
taskId |
Helpdesk's task ident |
|||
type |
Type of the calendar event |
|||
unit |
Details about the unit of duration |
|||
validated |
Return True if the calendar event is validated |
3.317. SearchControlBehavior
Detail about behavior and area to display the field
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
controlBehavior |
Details about the control behavior linked to the field |
|||
searchFieldInformation |
Details about the area linked to the field |
3.318. SearchFieldInformation
Informations sur un champ utilisé dans la configuration de la recherche. Le champ peut être affiché dans une zone différente en fonction du champ principal ou secondaire.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
categorySection |
The section in which the search field will be displayed. |
|||
categoryTab |
The tab in which the search field will be displayed. |
|||
code |
The code of the search field |
|||
fieldOrder |
Order number of the field |
int32 |
||
group |
Membership group of the field |
|||
id |
The Id of the search field |
|||
name |
The name of the search field |
|||
primary |
True when the search field is primary and will be displayed in the main search area |
|||
searchType |
The type of the search field |
|||
secondary |
True when the search field is secondary and will be displayed in the secondary search area. |
|||
sectionOrder |
Order number of the section |
int32 |
||
tabOrder |
Order number of the tab |
int32 |
3.319. SearchFieldType
Type of search field
Type : enum (DROPDOWN_LIST, DATE, TEXT, BOOLEAN, NUMBER)
3.320. SearchType
Type of search
Type : enum (PIPELINE_KANBAN, OPPORTUNITY, QUOTATION, SALES_ORDER, SALES_BILLING_TABLE, DELIVERY, SALES_INVOICE, CUSTOMER, SOLD_ITEM, QUOTE, PURCHASE_ORDER, PURCHASE_BILLING_TABLE, RECEPTION, PURCHASE_TEMPORARY_INVOICE, PURCHASE_INVOICE, CONTACT, EVENT, EMPLOYEE, PROJECT, PROJECT_TASK, ISSUE, SPRINT_CARD, PROJECT_EVENT, TIMESHEET_ENTRY, SCHEDULE, LEAVE_REQUEST_EMPLOYEE, EXPENSE_REPORT_EMPLOYEE, CUSTOM_REQUEST, PRODUCTION_TO_BILL_EMPLOYEE, PRODUCTION_TO_BILL_MANAGER, LEAVE_REQUEST_MANAGER, APPROVAL, EXPENSE_REPORT_MANAGER, SCHEDULE_BY_PROJECT, SCHEDULE_BY_EMPLOYEE, SCHEDULE_TIMESTAMPED, SCHEDULE_WORKLOAD, TASK_MANAGER)
3.321. Sector
Sector
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the Sector |
|||
companyId |
ID of the company |
|||
endDate |
The end date of the Sector. |
date-time |
||
id |
Id in database |
|||
name |
Name of the Sector |
|||
ranking |
The sector ranking in the list |
int32 |
3.322. SelectOption
Option used to get select resource fields when doing a search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
fields |
List of [string] |
List of the select option fields |
||
mode |
Mode of fields selection. If INCLUDE or EXCLUDE without fields all fields will be included |
Enum: INCLUDE, EXCLUDE, INCLUDE, EXCLUDE |
3.323. Service
Service
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the service |
|||
id |
Id in database |
|||
name |
Name of the service |
3.324. ServiceProviderProject
Provider Project Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
companyCode |
The company code. |
|||
division |
Division |
|||
divisionId |
Id of the division |
|||
entity |
Entity |
|||
entityId |
Id of the entity |
3.325. ShiftPeriod
Time unit for shifting the period.
Type : enum (YEAR, HALF_YEAR, QUARTER, MONTH, WEEK, DAY)
3.326. Site
Customer Site
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
SIRET |
Siret number |
|||
VATNumber (Deprecated) |
VAT number of the site |
|||
address |
Details about the address of the customer site. |
|||
addressId (Deprecated) |
ID of the address |
|||
chorusInformation |
Details about Chorus information |
|||
code |
Code of the customer site |
|||
contacts |
List of Contact |
List of the contacts linked to the customer site |
||
customer (Deprecated) |
Details about the customer |
|||
customerId (Deprecated) |
Code of the associated customer |
|||
The email of the customer site |
||||
externalReference |
The external customer site identification |
|||
fax |
Fax of the site |
|||
fullName |
Full name of the Site |
|||
fullName2 |
Full name 2 of the site (extension of the full name and matching the legal name 2) |
|||
id |
Id in database |
|||
main |
Set as “true” if this is the customer's main site. |
|||
manager |
Details about the manager. |
|||
managerId |
The ID of the manager. |
|||
mobilePhone |
To update this field, see the email field in the address field. |
|||
name |
Name of the customer site |
|||
notes |
The notes about the customer site (comment) |
|||
phone |
Phone of the Site |
|||
siteCode (Deprecated) |
Code of the site |
|||
taxInformation |
Details about the tax information |
|||
useForBillingAddress |
Set as true to use this site's address as the customer's billing address. |
|||
useForBillingAddressDefault |
Set as true to use this site's address as the customer's billing address by default. |
|||
useForDeliveryAddress |
Set as true to use this site's address as the customer's delivery address. |
|||
useForDeliveryAddressDefault |
Set as true to use this site's address as the customer's delivery address by default. |
|||
useForDunningAddress |
Set as true to use this site's address as the customer's dunning address. |
|||
useForDunningAddressDefault |
Set as true to use this site's address as the customer's dunning address by default |
|||
useForOrderAddress |
Set as true to use this site's address as the customer's order address. |
|||
useForOrderAddressDefault |
Set as true to use this site's address as the customer's order address by default |
|||
useForSupportAddress |
Set as true to use this site's address as the customer's support address. |
|||
useForSupportAddressDefault |
Set as true to use this site's address as the customer's support address by default. |
|||
validUntil |
The end date of validity |
date-time |
||
webSite |
Web Site of the site |
3.327. SiteChorusInformation
Site Chorus Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountingJournalId |
ID of the accounting journal. |
|||
serviceCode |
Code of Chorus service |
|||
serviceName |
Name of Chorus service |
3.328. SiteCriteria
Criteria used on Customer Site when doing a Customer Site search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
||||
customerId |
||||
id |
||||
name |
||||
readOption |
Options for retrieving extra information concerning the site |
|||
siret |
Siret number |
|||
useForBillingAddress |
If the site is meant for invoices or not |
|||
useForDeliveryAddress |
If the site is meant for deliveries or not |
|||
useForDunningAddress |
If the site is meant for dunning or not |
|||
useForOrderAddress |
If the site is meant for orders or not |
|||
useForSupportAddress |
If the site is meant for maintenance or not |
|||
validity |
Details about the validity of the customer site |
3.329. SiteMovement
Site movement
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
from |
Third party movement from |
|||
to |
Third party movement to |
3.330. SiteReadOption
Options used to get additional information when doing a contact's search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the site |
Enum: CONTACTS, MANAGER, CUSTOMER, ADDRESS, TAX_INFORMATION, TAX_INFORMATION_VAT_AREA |
3.331. SiteRelatedInformation
Site Related Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Creation and modification date and user |
|||
code |
The code of the contact. |
|||
contactId |
ID of the contact related to this contact |
|||
customerId (Deprecated) |
ID of the customer related to this contact |
|||
decisionMaker |
True if decision maker |
|||
The email of the contact on customer’s site. |
||||
emailAddressNotKnown |
Set as true if the email address of the contact is not known. |
|||
emailBlackListed |
Set to true if the contact has opted out of receiving emails. |
|||
excludeFromUsersOnIssues |
Exclude contact from user list on issues. |
|||
exitDate |
Exit date of the contact |
date-time |
||
fax |
Fax number of the contact |
|||
financialContact |
True if financial contact |
|||
firstName |
The first name of the contact. |
|||
helpdeskBlacklisted |
True if the Contact is blacklisted by the helpdesk |
|||
helpdeskContact |
Set as true if the Contact is a help desk contact. |
|||
helpdeskMainContact |
Set as true if the Contact is the help desk main contact. |
|||
helpdeskVIPContact |
Set as true if the Contact is a help VIP contact. |
|||
hiddenOnCRM |
Set as true if this contact should be hidden on CRM. |
|||
id |
Id in database |
|||
intern |
Set as true if the Contact is an intern. |
|||
label |
Label (also known as Title) of the contact |
|||
mainContact |
True if main contact |
|||
mainSite |
True if this is the main site |
|||
manager |
Details about the manager. |
|||
managerId |
Id of the manager |
|||
mobilePhone |
Mobile phone number of the site related information |
|||
name |
The name of the contact. |
|||
notes |
Notes related to this contact |
|||
phone |
Phone number of the site related information |
|||
phoneExtension |
Extension of the phone number of the contact |
|||
position |
Position (also known as Function) of the contact on customer’s site. |
|||
salesContact |
Set as true if the Contact is a sales contact. |
|||
service |
Service of the contact |
|||
siteId |
ID of the site |
|||
siteName |
Name of the site |
|||
thirdPartyRef |
Customer third party link |
|||
title |
Title of the site Related Information |
|||
trainingContact |
Set as true if the Contact is in training. |
|||
workPhone |
Work phone number of the contact |
3.332. Skill
Skill of an employee
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the skill |
|||
id |
Id in database |
|||
name |
Name of the skill |
|||
typeCode |
Code of the skill's type |
|||
typeLabel |
Label of the skill's type |
3.333. SoldItem
Sold item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
accountSettings |
Accounting information for an item. |
|||
automaticTitle |
Automatic title for a sold item, used for structuring and hierarchization of elements that utilize this sold item. |
|||
billingMode |
defaut billing mode for the item |
|||
category |
All details about the category of the product |
|||
categoryId |
The Id of the category |
|||
comment |
Comment on the product |
|||
companyCode |
The company code |
|||
customData |
Map of CustomData |
All custom data to update |
||
entityCode |
The entity code |
|||
family (Deprecated) |
The category of the product |
|||
grouping |
The grouping of the product |
|||
id |
Id in database |
|||
inventory |
Returns true if the product is in the inventory |
|||
inventoryAndPackaging |
Details about Inventory and Packaging |
|||
name |
Identification name |
|||
productionEstimatedDuration |
Estimated duration in minutes |
double |
||
productionInformations |
Details about productions informations |
|||
quantityPrecision |
Number of decimals for this item quantity |
double |
||
reference |
The reference of the product |
|||
shortName |
Abbreviated designation |
|||
subCategory |
All details about the sub-category of the product |
|||
subCategoryId |
The Id of the sub-category |
|||
subFamily (Deprecated) |
The sub-category of the product |
|||
unitPricePrecision |
Number of decimals for this item unit price |
double |
3.334. SoldItemCriteria
Search criteria for sold items
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
billingMode |
Billing mode for the sold item |
|||
categoryId |
The ID of the category |
|||
companyCode |
Code of the company |
|||
customData |
Map of Clause |
The custom data (when present) |
||
defaultDisplay |
Set as “True” to load only productions should be displayed by default. If not specified, all productions are loaded. |
|||
entityId |
Ident of the entity of the sold item |
|||
grouping |
Grouping of the sold item |
|||
id |
Ident of the sold item |
|||
inventory |
Returns true if the product is in the inventory |
|||
linkedToAdvancePayments |
Set as True to return production linked to advance payments. |
|||
marketEndDate |
End-of-sale date for the sold item. Indicates when the product stopped being available for sale |
|||
name |
Identification name |
|||
packagingType |
The packaging type of the sold item |
|||
readOption |
Options for retrieving extra information concerning the billing table |
|||
reference |
Reference of the sold item |
|||
subCategoryId |
The ID of the sub category |
|||
tag |
You can fill in the reference or grouping of the tag in this field |
|||
teamId |
The ID of the production team |
|||
validity |
Details about the validity of the sold item |
3.335. SoldItemReadOption
ReadOption of a SoldItem
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the sold item |
Enum: PRODUCTION_INFORMATIONS, PRODUCTION_INFORMATIONS_TEAM, CATEGORY, SUB_CATEGORY, CUSTOM_DATA |
3.336. SortField
Couple field/sort type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
fieldName |
Name of the field |
|||
order |
Sort type. (ASC or DESC) |
3.338. Stage
Stage
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the opportunity stage |
|||
color |
The color of the opportunity stage |
|||
default |
Set as true to use this stage by default. |
|||
endDate |
The end date of the stage |
date-time |
||
id |
Id in database |
|||
lockProbabilityLevel |
Set as true to impose the probability level entered for this stage |
|||
name |
Name of the opportunity stage |
|||
order |
The order (ranking) of this stage |
double |
||
probabilityLevel |
The probability level. |
|||
status |
Stage Status |
3.339. StageBase
Oppportunity Stage Base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the opportunity stage |
|||
id |
Id in database |
|||
name |
Name of the opportunity stage |
3.340. StageCriteria
Criteria used to search opportunity stages
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the opportunity stage. |
|||
default |
Set to true to return the default stage. |
|||
endDate |
End date of the opportunity stage. |
|||
id |
Id of the opportunity stage. |
|||
name |
Name of the opportunity stage. |
|||
status |
Status of the opportunity stage. |
3.341. StageStatus
Stage Status
Type : enum (IN_PROGRESS, COOMPLETED, WON, LOST, DISCARD, OFF_TARGET)
3.343. StandardWeekBase
Represents a standard week configuration, typically used to define recurring working patterns (e.g., default work week).
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the standard week |
|||
id |
Id in database |
|||
name |
Name of the standard week |
3.344. StatusFilter
Filtering criteria based on resource status.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
dateOperator |
Defines how the reference date is used to filter resources based on whether they have the specified status or not. |
|||
isActive |
Indicates whether the resource status is active or inactive. |
|||
referenceDate |
The reference date to check the status of the resource. If not provided, the current date is used by default. |
date-time |
3.345. StringParamHolder
Parameter value (String).
See the documentation of the calling API body for further information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
value |
Value |
3.346. StringsParamHolder
Parameter value (Array[String]).
See the documentation of the calling API body for further information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
value |
List of [string] |
Value |
3.347. SubCategory
Sub-Category
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
category |
Details about the category |
|||
categoryId |
The Id of the category |
|||
code |
The code of the sub-category |
|||
company |
Details about the company |
|||
companyCode (Deprecated) |
The code of the company |
|||
companyId |
ID of the company |
|||
endDate |
End date for using the sub-category |
date |
||
grouping |
Grouping field for sub-category |
|||
id |
Id in database |
|||
name |
The name of the sub-category |
|||
ranking |
Sub-category ranking in help lists |
int32 |
||
type |
Type of the category. |
3.348. SubCategoryCriteria
Criteria used on sub-category when doing a sub-category search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
categoryId |
Category's ident of the sub-category |
|||
code |
Code of the sub-category |
|||
companyId |
Company of the sub-category |
|||
endDate |
End date of validity for the sub-category |
|||
grouping |
Grouping field of the sub-category |
|||
id |
Ident of the sub-category |
|||
name |
Name of the sub-category |
|||
nature |
Nature of the sub-category |
|||
readOption |
Options for retrieving extra information concerning the sub-category |
|||
tag |
You can fill in the code or name of the sub-category in this field |
|||
type |
Type of the sub-category |
|||
validity |
Details about the validity of the sub-category |
3.349. SubCategoryItem
Sub category of an item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
category |
Details about the category |
|||
categoryId |
The Id of the category |
|||
code |
The code of the sub-category |
|||
company |
Details about the company |
|||
companyCode (Deprecated) |
The code of the company |
|||
companyId |
ID of the company |
|||
endDate |
End date for using the sub-category |
date |
||
grouping |
Grouping field for sub-category |
|||
id |
Id in database |
|||
name |
The name of the sub-category |
|||
ranking |
Sub-category ranking in help lists |
int32 |
||
subCategoryType |
Type of the purchased item sub-category |
|||
type |
Type of the category. |
3.350. SubCategoryItemClassification
Purchased item sub-category classification
Type : enum (EXTERNAL, INTERNAL, NOT_SPECIFIED, OTHERS, PRICE_REVIEW)
3.351. SubCategoryItemCriteria
Criteria used to get more details about Sub category of an item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
categoryId |
The Id of the category |
|||
code |
The code of the sub-category item |
|||
companyId |
The Id of the company |
|||
endDate |
End date of validity for the sub-category item |
|||
grouping |
Grouping field for sub-category item |
|||
id |
The Id of the sub-category item |
|||
name |
Name of the sub-category item |
|||
nature (Deprecated) |
Nature of the sub-category item |
|||
readOption |
Options for retrieving extra information concerning the sub-category of an item |
|||
subCategoryType |
Type of the purchased item sub-category item |
|||
tag |
You can fill in the code or name of the sub-category item in this field |
|||
type |
Type of the sub-category item. |
|||
validity |
Details about the validity of the sub-category item |
3.352. SubCategoryItemReadOption
The options you can use to get more information about the sub category of an item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the sub category of an item |
Enum: CATEGORY, COMPANY |
3.353. SubCategoryItemType
Sub type of a sub category of an item
Type : enum (PRESTATION, DISTRIBUTION, FRAIS_DE_MISSION, ACOMPTE, DIVERS, NON_RENSEIGNE, LICENCE, MAINTENANCE, DEVELOPPEMENT, SOUS_TRAITANCE, FRAIS_DE_PORT, ABONNEMENT, FORMATION)
3.354. SubCategoryReadOption
The options you can use to get more information about the sub category
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the sub category |
Enum: CATEGORY, COMPANY |
3.355. SubPhaseBase
SubPhase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of a sub-phase |
|||
id |
Id in database |
|||
name |
Name of a sub-phase |
|||
order |
Order number of the sub-phase |
int32 |
||
phase |
Details about the corresponding phase |
|||
phaseId |
ID of the corresponding phase |
3.356. SubPhaseState
State of a sub-phase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the sub-phase state |
|||
companyId |
ID of the company |
|||
id |
ID of the sub phase state |
|||
name |
The name of the sub-phase state |
3.357. SubPhaseStateCriteria
Criteria used on sub-phase state when doing a sub-phase state search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
||||
companyId |
||||
id |
||||
name |
3.358. SubledgerAccountBase
Subledger account (ident example AKSAS22106800)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Subledger account label |
3.359. SubledgerAccountCommon
Subledger account
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Subledger account label |
|||
number |
Subledger account number |
3.360. Subscription
Subscription to listen events using SSE
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
excludeMyOwnEvents |
Set as true to exclude the event of which I am the author. |
|||
token |
The token code allocated to the susbscription. |
|||
topic |
Topic to listen events |
3.361. SupplierBase
Suppliers
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the third party (customer, supplier, other third party). |
|||
id |
Id in database |
|||
name |
The name of the third party (customer, supplier, other third party). |
3.362. SupplierRelatedInformation
Supplier Related Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Creation and modification date and user |
|||
companyId |
ID of the company |
|||
contactId |
ID of the contact related to this supplier |
|||
id |
Id in database |
|||
noLongerWorkForThisCompany |
Set as 'True' if the Contact no longer works for the company |
|||
supplier |
Details about the supplier |
|||
supplierId |
ID of the supplier |
3.363. SupplierSiteBase
Supplier Site Base (Site Fournisseur)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
name |
Name of the supplier site |
|||
supplierId (Deprecated) |
Warning : The supplier ID cannot be changed once the supplier site has been created. Any modification will not be taken into account. |
3.364. SupplierSiteRelatedInformation
Supllier site related information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
changeTracking |
Creation and modification date and user |
|||
code |
The code of the contact. |
|||
contactId |
ID of the contact related to the supplier |
|||
decisionMaker |
Set as 'True' if the contact is a decision maker |
|||
Email of the contact |
||||
emailAddressNotKnown |
The Email address of the contact is not known |
|||
emailBlackListed |
The contact doesn't want to be contacted by mail |
|||
exitDate |
Exit date of the contact |
date-time |
||
fax |
Fax number of the contact |
|||
financialContact |
Set as 'True' if financial contact |
|||
firstName |
The first name of the contact. |
|||
helpdeskContact |
Set as 'True' if the Contact is a help desk contact |
|||
helpdeskMainContact |
Set as 'True' if the Contact is the help desk main contact |
|||
id |
Id in database |
|||
label |
Label (also known as Title) of the contact |
|||
mainContact |
Set as 'True' if main contact |
|||
mainSite |
Set as 'True' if this is the main site |
|||
mobilePhone |
Mobile phone number of the site related information |
|||
name |
The name of the contact. |
|||
notes |
Notes related to this contact |
|||
phone |
Phone number of the site related information |
|||
phoneExtension |
Extension of the phone number of the contact |
|||
position |
Position (also known as function) of the site related information |
|||
salesContact |
Set as 'True' if the Contact is a sales contact |
|||
service |
Service of the contact |
|||
site |
Details about the supplier site |
|||
siteId |
ID of the site |
|||
supplierId |
ID of the supplier |
|||
title |
Title of the site related information |
|||
workPhone |
Work phone number of the contact |
3.366. SupplierVariety
The variety of the supplier.
SUPPLIER_EMPLOYEE is set if the supplier is refers to an employee.
Type : enum (SUPPLIER_EMPLOYEE, SUPPLIER, ALL)
3.367. Tag
Tag
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the tag |
|||
color |
Color of the tag |
|||
comment |
Comment of the tag |
|||
companyId |
ID of the company |
|||
endDate |
End of validity of the tag |
date-time |
||
icon |
Icon of the tag |
|||
id |
Id in database |
|||
name |
Name of the tag |
|||
type |
Type of the tag |
3.368. TagCriteria
Criteria used when doing a tag search
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the tag |
|||
companyId |
Ident of the company |
|||
id |
Ident of the tag |
|||
name |
Name of the tag |
|||
tag |
You can fill in the code or name of the tag in this field |
|||
type |
Type of the tag |
|||
validity |
Details about validity |
3.369. TagLinked
Tag linked
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
Details about the action verb |
|||
code |
Code of the tag |
|||
color |
Color of the tag |
|||
comment |
Comment of the tag |
|||
companyId |
ID of the company |
|||
endDate |
End of validity of the tag |
date-time |
||
icon |
Icon of the tag |
|||
id |
Id in database |
|||
name |
Name of the tag |
|||
objectId |
ID of the linked object |
|||
type |
Type of the tag |
3.371. TaskBase
Task base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
3.372. TaskBillingType
The list of value of billing type of the type of project task.
Type : enum (TIME_BASED, TIME_BASED_FIXED_PRICE_MONTHLY)
3.373. TaskCommon
Task common
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
Id in database |
|||
number |
The number of the task. |
int32 |
3.374. TaxInformation
Tax Information
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
VATAreaId (Deprecated) |
The Id of the VAT Area |
|||
VATNumber (Deprecated) |
The number of the VAT rate |
|||
euExempt |
The 'euExempt' field indicates whether Intracommunity VAT exemption applies. |
|||
exempt |
The 'exempt' field indicates whether there is VAT exemption. |
|||
vatArea |
Details about the VAT Area. |
|||
vatAreaId |
The Id of the VAT Area |
|||
vatNumber |
The number of the VAT rate |
3.375. TemplatedMessage
A message is a combination of a Mail (used to store standard information for sending a mail) and functional information. This functional information is processed by backend service to compute standard information for sending mail like an employee's email address.
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
message |
||||
parameters |
List of PublishTemplateParameter |
Details about the template parameters |
||
templateId |
The publish template needed to generate and attach the report |
3.376. ThirdPartyBase
Third Party Base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the third party (customer, supplier, other third party). |
|||
id |
Id in database |
|||
name |
The name of the third party (customer, supplier, other third party). |
3.377. ThirdPartyLinkType
Third Party Link Type
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of third party link type |
|||
company |
Details about the company |
|||
companyId |
The Id of the company |
|||
endDate |
End date for third party link type. When the date is reached, the type can no longer be used. |
date-time |
||
id |
ID in database |
|||
name |
The name of third party link type |
|||
requiredSiren |
Set as 'true' to make SIREN entry mandatory for this type. |
3.378. ThirdPartyReference
Reference of a third party
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
thirdPartyId |
Id of the third party |
|||
thirdPartyType |
Type of the third party |
3.379. ThirdPartySite
A third party site
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
siteId |
Id of the site |
|||
thirdPartyRef |
The reference of the third party (customer, prospect, supplier) |
3.380. ThirdPartySiteInformation
Information about thirdParty and site
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
customerRelatedInformation |
Detail about the customer related information |
|||
siteRelatedInformation |
Detail about the site related information |
3.381. ThirdPartyTypeEnum
A type of the third party with people links
Type : enum (PROSPECT, CUSTOMER, SUPPLIER, OTHER_THIRD_PARTY)
3.382. Timeline
Timeline which define the initial date, the expected date and the actual date
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
actualDate |
The actual or effective date. |
date-time |
||
expectedDate |
The currently expected date. |
date-time |
||
initialDate |
The initially defined date. |
date-time |
3.383. TimelineCriteria
Timeline criteria which define the initial date, the expected date and the actual date
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
actualDate |
The actual or effective date. |
|||
expectedDate |
The currently expected date. |
|||
initialDate |
The initially defined date. |
3.384. TimesheetEntryBase
TimesheetEntryBase
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
actionCode |
Details about the action verb |
|||
actionCode2 |
Details of the action code |
|||
actionCode2Id |
ID of the second action code |
|||
actionCodeId |
ID of the action code |
|||
approval |
Approval of the timesheet entry |
Enum: BRUT, CONTROLE, VALIDE, GRATUIT, NON_FACTURE, FACTURE, REFUSE, DISSOCIE, BRUT, CONTROLE, VALIDE, GRATUIT, NON_FACTURE, FACTURE, REFUSE, DISSOCIE |
||
approvalLabel |
Label of the approval |
|||
changeTracking |
Date and user in case of creation and modification |
|||
comment |
Comment of the calendar event |
|||
completionDate |
Completion Date |
date-time |
||
customer |
Details about the customer |
|||
customerId |
ID of the customer |
|||
date |
Date of the calendar event |
date-time |
||
duration |
Duration of the calendar event |
double |
||
durations |
Duration in different units |
|||
employee |
Details about the employee |
|||
employeeId |
ID of the employee |
|||
guid |
Global identifier of the calendar event (for mobile version only) |
|||
id |
ID of the calendar event |
|||
location |
Location of the calendar event |
|||
phase |
Details about the phase |
|||
phaseId |
ID of the phase |
|||
project |
Details about the project |
|||
projectId |
ID of the project (equivalent to the code of the project) |
|||
projectTask |
Details about the task |
|||
projectTaskId |
ID of the project |
|||
subPhase |
Details about the sub-phase |
|||
subPhaseId |
ID of the sub-phase |
|||
taskId |
Helpdesk's task ident |
|||
type |
Type of the calendar event |
|||
unit |
Details about the unit of duration |
|||
validated |
Return True if the calendar event is validated |
3.385. Title
Title / Marriage status
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the title |
|||
companyId |
ID of the company |
|||
id |
Id of the title |
|||
name |
Name of the title |
|||
order |
Order number of the title |
int32 |
||
titleType |
Type of the title |
3.387. Topic
Topic to listen events
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
action |
The action verb (ADD / UPDATE / REMOVE). |
|||
id |
ID of the topic |
|||
type |
Type of event. |
3.388. TransactionStatus
Transaction status for electronic signatures
Type : enum (IN_PROGRESS, CANCELED, EXPIRED, COMPLETED)
3.390. UnitDuration
Unit of duration
Type : enum (MINUTE, HOUR_MINUTE, HOUR_DECIMAL, DAY, UNIT_OF_EMPLOYEE, UNIT_OF_COMPANY)
3.391. UnitPrice
Unit price of an item
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
value |
Unit price of an item |
double |
3.392. UserBase
User
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the user |
|||
firstName |
First name of the user |
|||
id |
Id in database |
|||
name |
Name of the user |
3.393. UserCriteria
UserCriteria
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
id |
||||
readOption |
Options for retrieving extra information concerning the user |
|||
tag |
Code or Last Name or First Name of the User |
3.394. UserProfileBase
User Profile Base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
Code of the user profile |
|||
id |
Id in database |
|||
name |
Name of the user profile |
3.395. UserReadOption
Options used to get additional information on user
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
options |
List of [string] |
List of options used to get more details about the user |
Enum: EMPLOYEE |
3.396. VAT
VAT
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
VAT code |
|||
companyCode |
The company code |
|||
endDate |
End date of the VAT |
date-time |
||
id |
Id in database |
|||
name |
Name |
|||
purchasingAccountNumber |
General purchasing account number linked to the tax code |
|||
rate |
VAT rate in percentage |
double |
||
reduced |
Returns true if the rate is reduced |
|||
salesAccountNumber |
General sales account number linked to the tax code |
|||
startDate |
Start date of the VAT |
date-time |
3.397. VATAreaBase
VAT Area Base
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the VAT area |
|||
id |
Id in database |
|||
name |
The name of the VAT area |
3.398. VATBase
VAT
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
VAT code |
|||
id |
Id in database |
|||
rate |
VAT rate in percentage |
double |
3.399. Validity
Validity criteria
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
date |
Date of validity of the item |
date-time |
||
type |
Details about the type of validity. |
3.401. ValorizationType
Type of Valorization
Type : enum (DAY_NUMBER_AND_AMOUNT, QUANTITY_AND_AMOUNT, QUANTITY_AND_AMOUNT_RECURRENT)
3.402. WinningArgument
Arguments to win
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
comment |
Comment |
|||
signatureDate |
Signature date of the opportunity |
date-time |
||
stageId |
The ID of the stage |
3.403. Year
Year (vintage) of the opportunity
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the year (vintage). |
|||
disabledDate |
Date of disability |
date-time |
||
id |
Id in database |
|||
name |
The name of the year (vintage). |
|||
previousYearId |
Previous year (vintage) ID. |
|||
repeating |
Set as true if the vintage is recurrent. |
|||
validityEndDate |
The end date of validity. |
date-time |
3.404. YearCriteria
Criteria used to search Year (vintage)
Field Name | Required | Type | Description | Format |
---|---|---|---|---|
code |
The code of the year (vintage) |
|||
companyId |
ID of the company |
|||
disabledDate |
Date on which the year will become inactive |
|||
id |
The ID of the year (vintage) |
|||
name |
The name of the year (vintage) |
|||
previousYearId |
Previous year (vintage) ID |
|||
validityEndDate |
Validity applicable on end date of the year |
4. Access
-
HTTP Basic Authentication BasicAuth BasicAuth
-
OAuth AuthorizationUrl: _, TokenUrl: _https://api.akuiteo.fr/akuiteo/oauth2/token
Unresolved directive in index.adoc - include::../../dist/deprecated.adoc[]
Unresolved directive in index.adoc - include::../../dist/lexique.adoc[]
Publication date : 2025-10-02 11:42:10
Copyright : Akuiteo © 2025