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
Table 1. http response codes
Code Message Datatype

204

Campaign successfully deleted

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 2. http response codes
Code Message Datatype

200

Campaign successfully loaded

Campaign

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 3. http response codes
Code Message Datatype

200

Campaign successfully loaded

Campaign

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 4. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 5. http response codes
Code Message Datatype

200

Image of the Contact having this id
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[byte[]]

204

No image for this contact
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[File]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 6. http response codes
Code Message Datatype

200

The avatar has successfully been uploaded

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 7. http response codes
Code Message Datatype

201

Contact successfully created

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 8. http response codes
Code Message Datatype

201

The link has been successfully created

[String]

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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 9. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 10. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 11. http response codes
Code Message Datatype

204

Successful delete

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 12. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 13. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 14. http response codes
Code Message Datatype

200

Image of the Contact having this id
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[byte[]]

204

No image for this contact
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[File]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 15. http response codes
Code Message Datatype

200

The informations about third party and site successfully loaded

ThirdPartySiteInformation

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 16. http response codes
Code Message Datatype

200

The site related information has been successfully loaded

SiteRelatedInformation

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 17. http response codes
Code Message Datatype

200

A contact of the customer

Contact

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 18. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 19. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 20. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 21. http response codes
Code Message Datatype

200

Contact successfully patched

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 22. http response codes
Code Message Datatype

200

Published document

PublishedDocument

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 23. http response codes
Code Message Datatype

200

A contact of the customer

Contact

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 24. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 25. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 26. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 27. http response codes
Code Message Datatype

200

Contact successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 28. http response codes
Code Message Datatype

200

Customer blocking information

BlockingInformation

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 29. http response codes
Code Message Datatype

201

A customer successfully inserted

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 30. http response codes
Code Message Datatype

200

A customer Site successfully inserted

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 31. http response codes
Code Message Datatype

201

Customer's linked salesman has been created

LinkedSalesmen

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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"
    }
  }
}

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
Table 32. http response codes
Code Message Datatype

200

Third Party's people link has successfully created

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 33. http response codes
Code Message Datatype

204

Customer successfully deleted

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 34. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 35. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 36. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 37. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 38. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 39. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 40. http response codes
Code Message Datatype

200

Image of the Customer having this id
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[byte[]]

204

No image for this customer
Headers :
Cache-Control : Cache for 1 week or as soon as modified

[File]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 41. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 42. http response codes
Code Message Datatype

200

Customer successfully loaded

Customer

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 43. http response codes
Code Message Datatype

200

Customer Site successfully loaded

Site

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 44. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 45. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 46. http response codes
Code Message Datatype

204

Customer successfully patched

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 47. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 48. http response codes
Code Message Datatype

200

Published document

PublishedDocument

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 49. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 50. http response codes
Code Message Datatype

200

Customer successfully loaded

Customer

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 51. http response codes
Code Message Datatype

200

A Customer Site successfully loaded

Site

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

Samples
Body parameter
Click to expand

{
  "options" : [ "CONTACTS", "CONTACTS" ]
}

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

-

Content Type
  • application/json

Responses
Table 52. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 53. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 54. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 55. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 56. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 57. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 58. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
  }
}

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

-

Content Type
  • application/json

Responses
Table 59. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 60. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 61. http response codes
Code Message Datatype

200

A customer linked salesman has been successfully defined as main

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 62. http response codes
Code Message Datatype

200

A Customer successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 63. http response codes
Code Message Datatype

200

A Customer Site successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 64. http response codes
Code Message Datatype

200

A customer linked salesman has been successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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"
    }
  }
}

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
Table 65. http response codes
Code Message Datatype

200

Third Party's people link has successfully updated

[String]

404

There is no people link

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 66. http response codes
Code Message Datatype

200

The avatar has successfully been uploaded

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 67. http response codes
Code Message Datatype

204

Prospect successfully validated.

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 68. http response codes
Code Message Datatype

200

Event successfully duplicated

Event

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 69. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 70. http response codes
Code Message Datatype

200

Event successfully Created

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 71. http response codes
Code Message Datatype

200

The link for between the event and the objet successfully created

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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 72. http response codes
Code Message Datatype

200

Relationship successfully Created

Relationship

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 73. http response codes
Code Message Datatype

204

Event successfully loaded Deleted

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 74. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 75. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 76. http response codes
Code Message Datatype

200

Event successfully loaded

Event

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 77. http response codes
Code Message Datatype

200

Events breakdown successfully loaded

EventsBreakdown

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 78. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 79. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 80. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 81. http response codes
Code Message Datatype

200

Relationship for the type and the third party of the event successfully loaded

Relationship

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 82. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 83. http response codes
Code Message Datatype

200

Event has been successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 84. http response codes
Code Message Datatype

204

Event successfully Postpone

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 85. http response codes
Code Message Datatype

200

Event successfully pre-filled

Event

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 86. http response codes
Code Message Datatype

200

Published document

PublishedDocument

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 87. http response codes
Code Message Datatype

200

Event successfully loaded

Event

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 88. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 89. http response codes
Code Message Datatype

204

Relationship successfully Removed

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 90. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 91. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 92. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 93. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 94. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 95. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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)

Content Type
  • application/json

Responses
Table 96. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 97. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 98. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 99. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

mail

The message to send TemplatedMessage

-

Responses
Table 100. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 101. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 102. http response codes
Code Message Datatype

200

Event successfully Updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 103. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 104. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 105. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 106. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 107. http response codes
Code Message Datatype

200

Opportunity successfully inserted

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 108. http response codes
Code Message Datatype

200

Line successfully Created

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 109. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 110. http response codes
Code Message Datatype

204

An opportunity successfully Deleted

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 111. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 112. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 113. http response codes
Code Message Datatype

200

Department successfully loaded

Department

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 114. http response codes
Code Message Datatype

200

All Departments

List[Department]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 115. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 116. http response codes
Code Message Datatype

200

All opportunities

List[Opportunity]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 117. http response codes
Code Message Datatype

200

Opportunity successfully loaded

Opportunity

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 118. http response codes
Code Message Datatype

200

Opportunity successfully loaded

Opportunity

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 119. http response codes
Code Message Datatype

200

Line of opportunity successfully loaded

OpportunityLine

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 120. http response codes
Code Message Datatype

200

Origin Type successfully loaded

OriginType

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 121. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 122. http response codes
Code Message Datatype

200

Pipe successfully loaded

Pipe

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 123. http response codes
Code Message Datatype

200

All pipes

List[Pipe]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 124. http response codes
Code Message Datatype

200

Stage successfully loaded

Stage

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 125. http response codes
Code Message Datatype

200

All Stages

List[Stage]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 126. http response codes
Code Message Datatype

200

Year successfully loaded

Year

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 127. http response codes
Code Message Datatype

200

All years

List[Year]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 128. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 129. http response codes
Code Message Datatype

200

Opportunity successfully patched

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 130. http response codes
Code Message Datatype

200

Line of opportunity successfully patched

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 131. http response codes
Code Message Datatype

200

Opportunity successfully pre-filled

Opportunity

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 132. http response codes
Code Message Datatype

200

Published document

PublishedDocument

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 133. http response codes
Code Message Datatype

200

Opportunity successfully loaded

Opportunity

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 134. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 135. http response codes
Code Message Datatype

200

Line of opportunity successfully loaded

OpportunityLine

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 136. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 137. http response codes
Code Message Datatype

200

Successful Search

List[OpportunityLine]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 138. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 139. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 140. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 141. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 142. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 143. http response codes
Code Message Datatype

204

Signature Date successfully Updated

<<>>

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 144. http response codes
Code Message Datatype

200

An opportunity successfully updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 145. http response codes
Code Message Datatype

200

Opportunity successfully Updated

Opportunity

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 146. http response codes
Code Message Datatype

200

Line of opportunity successfully Updated

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 147. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 148. http response codes
Code Message Datatype

201

The other third-party has been successfully created

[String]

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 149. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 150. http response codes
Code Message Datatype

200

Other third-party successfully loaded

OtherThirdParty

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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 151. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 152. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 153. http response codes
Code Message Datatype

200

The other third-party has been successfully updated

[String]

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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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
Table 154. http response codes
Code Message Datatype

200

The contact has been successfully loaded

Contact

400

Bad Request - Standard failure code. This code is used when no other specific code applies.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

-

Content Type
  • application/json

Responses
Table 155. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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

Content Type
  • application/json

Responses
Table 156. http response codes
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.

ErrorResponse

401

Unauthorized - indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.

ErrorResponse

402

Request Failed - The parameters were valid but the request failed.

ErrorResponse

403

Forbidden - The user does not have permissions to perform the request.

ErrorResponse

404

Not Found - The requested resource does not exist.

ErrorResponse

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.

ErrorResponse

406

Not Acceptable - The requested resource is capable of generating only content not acceptable according to the Accept headers sent in the request.

ErrorResponse

500

Internal Error - Server errors. The call was successful but something went wrong on Akuiteo’s end.

ErrorResponse

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.1. AccountType

Type of the account for international bank detail

Type : enum (IBAN, BBAN, OTHER)

3.2. AccountingJournal

Accounting journal

Field Name Required Type Description Format

code

[String]

The accounting journal code
Warning : The accounting journal code cannot be changed once it has been created. Any modification will not be taken into account.

endDate

[date]

End date of. Cannot be set directly please use the //TBD path.
Example : 2020-12-25

date

excludedByDefault

[Boolean]

Excluded by default from accounting reports (trial balance, General ledger, accounting entries seach)

id

[String]

Id in database
Example : 5000123

miscellaneousTransactionsProhibited

[Boolean]

Miscellaneous transactions Prohibited

name

[String]

The accounting journal name

startDate

[date]

Accounting journal start date
Example : 2020-12-25

date

3.3. AccountingJournalBase

Accounting journal

Field Name Required Type Description Format

code

[String]

The accounting journal code
Warning : The accounting journal code cannot be changed once it has been created. Any modification will not be taken into account.

id

[String]

Id in database
Example : 5000123

name

[String]

The accounting journal name

3.4. AccountingParameters

Accounting Parameters

Field Name Required Type Description Format

accountingNumber

[String]

Customer accounting number
This field cannot be updated using the customer creation or update API.

Example : C320

currencyCode

[String]

The code of the currency
Example : EUR

customerId

[String]

The ID of the customer
Example : 5000123

deferredIncomeReconciliationAccountNumber

[String]

Deferred Income Reconciliation Account Number.
Collective account used in the accounting position setting for this purpose (PCA)

Example : 487000

group

[Boolean]

Set as true if the customer is part of a group.
Set as false by default

Example : false

intercoCode

[String]

The interco code of the customer
Example : C255

internalReconciliationAccountNumber

[String]

Internal Reconciliation Account Number
Example : 48700

internalType

CustomerInternalType

Customer Internal type. This field is set by default with the value EXTERNAL.
Example : INTERNAL

isDematerializedInvoices

[Boolean]

Set as true if invoices are dematerialized for this customer.
Set as false by default.

Example : false

isFactoringSupported

[Boolean]

Set as true if factoring is supported for this customer.
Set as false by default

Example : false

isNotBooked

[Boolean]

Set as true if the customer is not to be booked. Set as false by default.
Example : false

journalCode

[String]

The code of the accounting journal
Example : BN

mainReconciliationAccountNumber

[String]

The main reconciliation account number.
Example : 411000

reconciliationAccount2Number

[String]

The second reconciliation account number.
Example : 411000

reconciliationAccount3Number

[String]

The third reconciliation account number.
Example : 411000

reconciliationAccount4Number

[String]

The fourth reconciliation account number.
Example : 411000

reconciliationAccount5Number

[String]

The fifth reconciliation account number.
Example : 411000

siaControlNumber

[String]

The sales invoice accruals account number (FAE).
Collective account used in the accounting position setting for this purpose.

Example : 418100

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

[String]

Code of the second action code
Example : ADD

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the action code
Example : ADD

3.7. ActionCodeBase

Details about the action code

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the action code
Example : ADD

3.8. ActionManagementObjectLine

ActionManagementObjectLine

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

id

[String]

Id in database
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

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.

Example : 36.32

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

[String]

Code of the activity

departmentId

[String]

ID of the department
Example : 320014

endDate

[Date]

End of validity
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the activity

3.11. ActivityBase

Division

Field Name Required Type Description Format

code

[String]

Code of the activity

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the activity

3.12. AdditionalFreeFields

Free fields of a Management Object Line

Field Name Required Type Description Format

field1

[String]

Free field 1
Example : Free field

field2

[String]

Free field 2
Example : Free field

field3

[String]

Free field 3
Example : Free field

field4

[String]

Free field 4
Example : Free field

field5

[String]

Free field 5
Example : Free field

3.13. AdditionalFreeFieldsCriteria

Search criteria for additional free fields

Field Name Required Type Description Format

additionalFreeField1

ClauseString

additionalFreeField2

ClauseString

additionalFreeField3

ClauseString

additionalFreeField4

ClauseString

additionalFreeField5

ClauseString

3.14. Address

Details about the address

Field Name Required Type Description Format

cedex

[String]

Special number assigned to a company by the French postal code
Example : CEDEX 14

city

[String]

City of the address
Example : London

country

[String]

Country code of the address in the database
Example : FR (for 'FRANCE')

countryName

[String]

Country name of the address
Example : FRANCE
Remark : This property is read-only and provides current data without allowing modifications.

department

[String]

Geographical department code of the address in the database
Example : 75 (for 'PARIS')

email

[String]

Email of the address
Example : myemail@mail.com

fax

[String]

Fax of the address
Example : 04 00 00 00 07

geographicalDepartmentName

[String]

Name of the geographical department for the address
Example : CENTRE VAL DE LOIRE
Remark : This property is read-only and provides current data without allowing modifications.

id (Deprecated)

[String]

Id in database
Deprecated : This field is unused and will soon be removed.

line1

[String]

First line of the address
Example : 221B Baker Street

line2

[String]

Second line of the address
Example : 2nd Floor

line3

[String]

Third line of the address
Example : First door at your right

mobilePhone

[String]

Mobile Phone of the address
Example : 06 00 00 00 02

phone

[String]

Phone of the address
Example : 06 00 00 00 01

phone2

[String]

Second phone of the address
Example : 06 00 00 00 02

postalCode

[String]

Postal code of the city
Example : 69002

region

[String]

Region code of the address in the database
Example : 65 (for 'ILE DE FRANCE')

regionName

[String]

Region name of the address
Example : ILE DE FRANCE
Remark : This property is read-only and provides current data without allowing modifications.

webSite

[String]

Web Site of the address
Example : mysite.com

3.15. Alert

Alert message

Field Name Required Type Description Format

level

[String]

Level of the alert
Example : ERROR

Enum: ERROR, WARNING, INFO, ERROR, WARNING, INFO

message

[String]

Message of the alert
Example : Lorem ipsum

3.16. AmortizationMethod

The method of amortization

Type : enum (LINEAR, SLIDING_SCALE)

3.17. AmountCategoryType

Amount Category (Unitary/Total)

Type : enum (UNITARY, TOTAL)

3.18. AnalysisResult

Analysis result consisting of a value, a date and a set of analysis groups

Field Name Required Type Description Format

date

[Date]

Aggregate date of the analysis (see dateLike)
Example : 2020-01-23T04:56:07.000+00:00

date-time

group

Map of [object]

All analysis groups
Example : {"SALES_MANAGER_SUPERVISOR_CODE":"BLR"}

value

[Double]

Aggregate value of the analysis
Example : 4000

double

3.19. ApplicationControlBase

Application control

Field Name Required Type Description Format

code

[String]

The code of the application control base.
Example : Text

id

[String]

Id in database
Example : 5000123

info1

[String]

The first information about the application control base.
Example : Text

info2

[String]

The second information about the application control base.
Example : Text

info3

[String]

The third information about the application control base.
Example : Text

info4

[String]

The fourth information about the application control base.
Example : Text

info5

[String]

The fifth information about the application control base.
Example : Text

3.20. ApprovalManagementObject

Information on the approval of a management object (pièce de gestion)

Field Name Required Type Description Format

afterTaxAmount

[Double]

After-Tax amount expressed in company currency
Example : 120.37

double

approvalDate

[Date]

Date of approval
Example : 2020-01-23T04:56:07.000+00:00

date-time

approvalState

ApprovalState

State of approval
Example : NONE

changeTracking

ChangeTracking

companyCode

[String]

The company code
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

currency

Currency

Currency used in the management object

currencyCode

[String]

Code of the currency used in the management object
Example : EUR

customData

Map of CustomData

The custom data (when present)

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

description

[String]

Description
Example : Lorem ipsum

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

preTaxAmount

[Double]

Pre-Tax Amount expressed in company currency
Example : 100.14

double

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

type

ManagementObjectType

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

[String]

Comment to describe the archiving reason
Example : Lorem ipnum

reasonId

[String]

The ID of the archive reason.
Example : 5000152

3.23. ArchiveReasonBase

Details about the reasons to archive

Field Name Required Type Description Format

code

[String]

Code of the reason to archive

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the reason to archive

3.24. Assignment

Assignment

Field Name Required Type Description Format

customer

CustomerBase

Details about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

ID of the customer
Example : 5000123

phase

PhaseBase

Details about the phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

Details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_1

projectTask

ProjectTaskBase

Details about the task
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

ID of the project
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 5000123

3.25. AssignmentCriteria

Criteria used to get more details about an assignment

Field Name Required Type Description Format

activityId

ClauseString

Ident of the activity

allCompanies

[Boolean]

Set as True if you don't want to filter on companies

companyId

ClauseString

Ident of the company

countAssignmentType

AssignmentType

Define the node type when counting an assignment tree. Used like a query parameter limit.
Example : COMPANY

customerId

ClauseString

Ident of the customer

departmentId

ClauseString

Ident of the department

divisionGroupId

ClauseString

Ident of the division group

divisionId

ClauseString

Ident of the division

employeeId

[String]

ID of the employee

employeeIdScheduled

List of [string]

Ids of employees for which the project has schedules

employeePartitioning

[Boolean]

Set as True if you want to apply the partitioning by employee

entityId

ClauseString

Ident of the entity

ignoreProjectAllCustomer

[Boolean]

Set as True if you want to ignore all customer projects

lowerAssignmentType

AssignmentType

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.
Example : COMPANY

mainCustomer

[Boolean]

Set as True if you want to filter only main customers

phaseCode

ClauseString

Code of the phase

phaseId

ClauseString

Ident of the phase

projectCategorieId

ClauseString

Ident of the project category

projectClosed

ClauseBoolean

Set as True if you want to include closed projects

projectEmployeeLinkedId

ClauseString

Ids of employees linked to the project (Include projects with no employee linked)
Only supports IN or IS operators

projectFilterType

ProjectFilterType

Filter on project (may override some other clauses like divisionId or entityId)
Example : NONE

projectFinancialManagerId

ClauseString

Ident of the project financial manager

projectGroupCode

ClauseString

Code of the project group

projectId

ClauseString

Ident of the project (equivalent to the code of the project)

projectInternal

ClauseBoolean

Set as True if you want to include internal projects

projectManagerId

ClauseString

Ident of the project manager

projectOnLeave

ClauseBoolean

Set as True if you want to include leave projects

projectProductionManagerId

ClauseString

Ident of the project production manager

projectSalesManagerId

ClauseString

Ident of the project sales manager

projectStateCode

ClauseString

Code of the projectState

projectSubCategorieId

ClauseString

Ident of the sub-category

projectSubcategorieLevel2Id

ClauseString

Ident of the sub-category level 2

projectTaskEmployeeLinkedId

ClauseString

Ids of employees linked to the project task (Include project tasks with no employee linked)
Only supports IN or IS operators

projectTaskId

ClauseString

Ident of the task

referentialDate

[Date]

Start referential date. If the field is not filled in, it take today's date by default
Example : 2020-01-23T04:56:07.000+00:00

date-time

referentialDateEnd

[Date]

End referential date. This date must be after the referentialDate.
Example : 2020-01-23T04:56:07.000+00:00

date-time

scheduled

ClauseBoolean

Assignment with schedules over the period (see referentialDate)

subPhaseCode

ClauseString

Code of the sub-phase

subPhaseId

ClauseString

Ident of the sub-phase

tag

ClauseString

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

AssignmentType

Define the root node type when searching an assignment tree. If this field is not filled in, default root node type is CUSTOMER.
Example : COMPANY

yearId

ClauseString

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
Example : <project, customerId>

assignments

List of AssignmentNode

Assignment node's child
Example : see AssignmentNode

code

[String]

Code of the assignment
Example : 01-MAINT

description

[String]

Short description of the assignment
Example : Short lorem ipsum

id

[String]

Id in database
Example : 5000123

longDescription

[String]

Long description of the assignment
Example : Long lorem ipsum

parentId

[String]

ID of the parent
Example : 120047

parentType

AssignmentType

Details about the parent
Example : COMPANY

selectable

[Boolean]

Return True if the assignment node can be selected
Example : true

type

AssignmentType

Details about the assignment type
Example : COMPANY

3.28. AssignmentReferential

Assignment referential

Field Name Required Type Description Format

activity

ActivityBase

Details about the activity

category

Category

Details about the category

company

CompanyBase

Details about the company

customer

CustomerBase

Details about the customer

department

Department

Details about the departement

division

Division

Details about the divison

divisionGroup

DivisionGrouping

Details about the division grouping

entity

Entity

Details about the entity

id

[String]

Id in database
Example : 5000123

phase

PhaseBase

Details about the phase

project

ProjectCommon

Details about the project

projectGroup

ProjectGroup

Details about the project group

projectManager

EmployeeBase

Details about the project manager

projectProductionManager

EmployeeBase

Details about the production manager

projectState

ProjectState

Details about the project state code

projectTask

ProjectTaskCommon

Details about the task

subCategory

Category

Details about the sub-category

subCategoryLevel2

Category

Details about the second sub-category

subPhase

SubPhaseBase

Details about the sub-phase

year

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

[String]

The base64-encoded binary content or URL of the entity's avatar image.
Example : iVBORw0KGgoAAAANS

3.33. AxeCriteria

Standard criteria for filtering data from the analysis

Field Name Required Type Description Format

axeType

X

[String]

Unused (technical field)

customerAccountManagerId

ClauseString

Ident of customer's account manager

customerAccountManagerSupervisorId

ClauseString

Ident of customer's account manager supervisor

customerCountryId

ClauseString

Ident of customer's country

customerFamilyId

ClauseString

Ident of the customer's project category

customerGrouping1

ClauseString

Customer's grouping

customerGrouping2

ClauseString

Customer's grouping 2

customerId

ClauseString

Ident of customer

customerRegionId

ClauseString

Ident of customer's address region

customerSalesmanId

ClauseString

Ident of customer's salesman

customerSalesmanSupervisorId

ClauseString

Ident of customer's salesman supervisor

customerSectorId

ClauseString

Ident of customer's sector

customerState

ClauseString

Customer's state

customerSubFamilyId

ClauseString

Ident of the customer's project subcategory

groupCustomer

ClauseBoolean

Group of companies of the customer

phaseId

ClauseString

Ident of the phase

projectActivityId

ClauseString

projectCampaignId

ClauseString

Ident of the project's compaign

projectCompanyCode

ClauseString

Code of the project's company

projectDepartmentId

ClauseString

Ident of the project's department

projectDivisionGroupId

ClauseString

Ident of the project's division group

projectDivisionId

ClauseString

Ident of the project's division

projectEstablishmentId

ClauseString

projectFamilyId

ClauseString

Ident of the project's category

projectFinancialManagerId

ClauseString

Ident of the project's financial manager

projectId

ClauseString

Ident of the project (equivalent to the code of the project)

projectManagerId

ClauseString

Ident of the project manager of the project

projectMarketId

ClauseString

Ident of project group of the project

projectProductionManagerId

ClauseString

Ident of the project's product manager

projectSalesManagerId

ClauseString

Ident of the project's sales manager

projectState

ClauseString

State of project

projectSubFamily2Id

ClauseString

Ident of the project's sub-category level 2

projectSubFamilyId

ClauseString

Ident of the project's sub-category

projectVintageId

ClauseString

Ident of the year (vintage) of the project

prospect

ClauseBoolean

True is customer is a prospect

subPhaseId

ClauseString

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

[String]

Code of the bank - 4 digits max
Example : DAAE

branch

[String]

Code of the optional branch - 3 digits max
Example : CCT

country

[String]

Country code of the address in the database
Example : FR (for 'FRANCE')

location

[String]

Code of the location - 2 digits max
Example : PP

3.36. BankDetails

Details about the bank of a people

Field Name Required Type Description Format

accountNumber

[String]

Account number - 11 digits max
Example : 0000157841Z

counter

[String]

Code of the counter - 5 digits max
Example : 550

domiciliation

[String]

Bank domiciliation
Example : AURA

entity

[String]

Code of the bank - 5 digits max
Example : 30002

key

[String]

Key of the RIB - 2 digits max
Example : 25

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

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

id

[String]

ID in database
Example : 5000123

noneSepa

NoneSEPA

Details about the none SEPA banking information (exclusive with the sepa field)

sepa

SEPA

Details about the SEPA banking information (exclusive with the noneSepa field)

statusChangeArgument

BankingInformationStatusParamHolder

Argument to change the status of a banking information

statusChangeDate

[Date]

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.
Example : 2020-01-23T04:56:07.000+00:00

date-time

type

BankingInformationType

The type of banking information used to indicate whether the data refers to SEPA details (with BIC, IBAN, and bankDetails) or international bank details.
If the type is SEPA, only the sepa field must be filled.
If the type is INTERNATIONAL_BANK, only the noneSepa field must be filled.
The default value is SEPA. This field cannot be null.

Example : SEPA

validator

EmployeeBase

Details about the employee who will validate banking data.
Remark : In add APIs (mainly PUT requests) validator model is not expected, use the validatorId field instead.

validatorId

[String]

Set as true if this rule for validating banking data is applied to employees.
Example : 5000123

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

[String]

Comment about the change status
Example : Comment

status

X

BankingInformationStatus

The status of the Banking Information
Example : VALIDATED

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

[String]

ID in database of base rate
Example : 5000123

name

[String]

The description of the base rate
Example : Lorem Ipsum

3.44. BatchArchiveArgumentParamHolder

The parameters for archiving the quotations

Field Name Required Type Description Format

archiveArgument

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

BillingMode

Billing mode for the line
Example : TIME_BASED

ids

List of [string]

Ids of the objects

notPublishable

[Boolean]

Set to “true” if the line is not to be shown when the sales management object containing said line (quotation, invoice, etc.) is published.
Set as 'false' by default.

Example : false

resourceId

[String]

Id of the resource allocated to complete the task
Example : 5000123

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

[Boolean]

Operation is not blocked for this customer but has alerts.

blocked

X

[Boolean]

Operation is blocked for this customer.

reason

[String]

Reason why customer is blocked.

3.51. BlockingParamHolder

Blocking information needed to apply checking

Field Name Required Type Description Format

amount

X

[Double]

Amount to be checked

double

objectId

[String]

Object tested (only in modifcation)

objectType

X

BlockedType

Type of parameterized object tested
Example : OPPORTUNITY

3.52. BooleanParamHolder

Parameter value (Boolean).
See the documentation of the calling API body for further information

Field Name Required Type Description Format

value

[Boolean]

Value

3.53. BusinessEntity

BusinessEntity manages project-related information, including its phases and sub-phases.

Field Name Required Type Description Format

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

3.54. BusinessReferential

BusinessReferential manages project-related information, including phases, sub-phases, and associated project tasks.

Field Name Required Type Description Format

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

3.55. Calendar

Calendar

Field Name Required Type Description Format

code

[String]

The code of the calendar.
Example : Text

daysNotWorked

List of [integer]

Days not worked (ISO day of the week with 1 being Monday and 7 being Sunday)

int32

default

[Boolean]

Set as 'true' to use this calendar by default.
Set as 'false' by default.

Example : true

holidays

List of Holiday

Details about list of holidays.

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the calendar.
Example : Text

3.56. CalendarEvent

CalendarEvent

Field Name Required Type Description Format

actionCode

ActionCodeBase

Details about the action verb
Remark : In add APIs (mainly PUT requests) actionCode model is not expected, use the actionCodeId field instead.

actionCodeId

[String]

ID of the action code
Example : 130012

changeTracking

ChangeTracking

Date and user in case of creation and modification

comment

[String]

Comment of the calendar event

customer

CustomerBase

Details about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

ID of the customer
Example : 5000123

date

[Date]

Date of the calendar event
Example : 2020-01-23T04:56:07.000+00:00

date-time

duration

[Double]

Duration of the calendar event
Example : 2

double

durations

Durations

Duration in different units

employee

EmployeeBase

Details about the employee
Remark : In add APIs (mainly PUT requests) employee model is not expected, use the employeeId field instead.

employeeId

[String]

ID of the employee
Example : 5000123

guid

[String]

Global identifier of the calendar event (for mobile version only)

id

[String]

ID of the calendar event

location

[String]

Location of the calendar event
Example : Paris

phase

PhaseBase

Details about the phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

Details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_1

projectTask

ProjectTaskBase

Details about the task
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

ID of the project
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 5000123

taskId

[String]

Helpdesk's task ident
Example : 5000123

type

[String]

Type of the calendar event
Example : SCHEDULE

unit

UnitDuration

Details about the unit of duration
Example : MINUTE

validated

[Boolean]

Return True if the calendar event is validated

3.57. Campaign

Marketing campaign

Field Name Required Type Description Format

changeTracking

ChangeTracking

Creation and modification date and user

code

[String]

The code of the campaign.
Example : CMP_2024_001

companyId

[String]

ID of the company
Example : 5000123

description

[String]

Description of the campaign.
Example : Lorem ipsum

endDate

[Date]

The end date of the campaign.
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

ID in database
Example : 5000123

manager

EmployeeBase

Details about the manager assigned to the campaign.
Remark : In add APIs (mainly PUT requests) manager model is not expected, use the managerId field instead.

managerId

[String]

ID of the manager assigned to the campaign.
Example : 5000123

name

[String]

The name of the campaign.
Example : Campaign 2024-01

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase.
Example : 5000123

project

ProjectBase

All details about the project.
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

startDate

[Date]

The start date of the campaign.
Example : 2020-01-23T04:56:07Z

date-time

subPhase

SubPhaseBase

Details about the sub-phase.
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase.
Example : 5000123

targetId

[String]

ID of the campaign’s target.
Example : 5000123

typeId

[String]

ID of the campaign type.
Example : 5000123

3.58. CampaignBase

Marketing campaign

Field Name Required Type Description Format

code

[String]

The code of the campaign.
Example : CMP_2024_001

id

[String]

ID in database
Example : 5000123

name

[String]

The name of the campaign.
Example : Campaign 2024-01

3.59. CampaignCriteria

Criteria used to get more details about the campaign.

Field Name Required Type Description Format

changeTracking

ChangeTrackingCriteria

Change tracking criteria

code

ClauseString

Code of the campaign

companyId

ClauseString

Id of the company

description

ClauseString

Description of the campaign

endDate

ClauseDate

Clause about the end date of the campaign.

id

ClauseString

Id of the campaign

managerId

ClauseString

ID of the manage assigned to the campaign.

name

ClauseString

Name of the campaign

phaseId

ClauseString

ID of the phase.

projectId

ClauseString

ID of the project (equivalent to the code of the project)

readOption

CampaignReadOption

Options for retrieving extra information concerning the campaign

startDate

ClauseDate

Clause about the start date of the campaign.

subPhaseId

ClauseString

ID of the sub-phase.

tag

ClauseString

You can fill in the code or name of the campaign in this field

targetId

ClauseString

ID of the campaign’s target.

typeId

ClauseString

ID of the campaign type.

validity

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

[String]

The code of the category
Example : LANG

companyCode

[String]

The code of the company
Example : AKSAS

endDate

[date]

End date for using the category of the product
Example : 2020-12-25

date

grouping

[String]

Grouping field for category

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the category
Example : Language

ranking

[Integer]

Category ranking in help lists

int32

type

CategoryType

Type of the category.
Example : SALES_ITEM

3.62. CategoryCriteria

Criteria used on Category when doing a Category search

Field Name Required Type Description Format

code

ClauseString

Code of the category

companyId

ClauseString

Company of the category

endDate

ClauseDate

End date of validity for the category

grouping

ClauseString

Grouping field of the category

id

ClauseString

Ident of the category

name

ClauseString

Name of the category

tag

ClauseString

You can fill in the code or name of the category in this field

type

ClauseString

Type of the category
(See CategoryType)

validity

Validity

Details about the validity of the category

3.63. CategoryEvent

Category of an Event

Field Name Required Type Description Format

code

[String]

Code of the category
Example : Dunning of customer/prospect

creatableEverywhere

[Boolean]

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.
Set as false by default.

Example : true

displayableEverywhere

[Boolean]

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.
Set as false by default.

Example : true

endCustomData

[Integer]

Custom data display end index.
Example : 5

int32

icon

[String]

Icon used on display
Example : fa fa-phone

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the category
Example : Dunning of customer/prospect

nbColsCustomData

[Integer]

Number of custom data columns to display.
Example : 15

int32

obsolete

[Boolean]

Set as true if the type is obsolete.
Set as false by default.

Example : true

reply

[Boolean]

Set as true if a reply is needed.
Set as false by default.

Example : true

startCustomData

[Integer]

Custom data display start index.
Example : 1

int32

typeEvent

TypeEvent

Type of the Event.
Example : TACHE

3.64. CategoryEventCriteria

Criteria used on Event Service when doing a Event Dashboard search

Field Name Required Type Description Format

code

ClauseString

Code of the category event

companyCode

ClauseString

Code of the company

creatableEverywhere

ClauseBoolean

Set as 'true' to return items that can be created across all platforms, including the CRM portal.

displayableEverywhere

ClauseBoolean

Set as 'true' to return the full list of event categories.
If this field is set to 'false', categories that can be displayed only on the CRM will not be returned.

eventTypes

List of TypeEvent

Type of the event
Example : RDV

id

ClauseString

Ident of the category event

name

ClauseString

Name of the category event

obsolete

ClauseBoolean

Set as 'true' to return only the valid event categories.
If this field is set to false, only those that are obsoletes will be returned.

tag

ClauseString

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

UserBase

Code of the creator (user)
Remark : In add APIs (mainly PUT requests) createdBy model is not expected, use the createdById field instead.

createdById

[String]

Id of the creator (user)
Example : 5000123

createdTime

[Date]

Creation Date
Example : 2020-01-23T04:56:07.000+00:00

date-time

modificationBy

UserBase

Code of the user who did the modification
Remark : In add APIs (mainly PUT requests) modificationBy model is not expected, use the modificationById field instead.

modificationById

[String]

Id of the user who did the modification
Example : 5000123

modificationTime

[Date]

Date of the modification.
Example : 2020-01-23T04:56:07.000+00:00

date-time

3.67. ChangeTrackingCriteria

Standard criteria for filtering data from the change tracking

Field Name Required Type Description Format

createdById

ClauseString

The ID of the user who created the object.

createdTime

ClauseDate

The date and time when the object was created.

updatedById

ClauseString

The ID of the user who last updated the object.

updatedTime

ClauseDate

The date and time when the object was last updated.

3.68. CheckbookBase

Customer checkbook base

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the checkbook
Example : A10_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

[String]

Code of Chorus service
Example : Z-FDJ-CA

serviceName

[String]

Name of Chorus service
Example : SCA

3.71. City

City

Field Name Required Type Description Format

companyCode

[String]

The code of the company linked to the city
Example : AKSAS

country

Country

The country where the city is located
Remark : In add APIs (mainly PUT requests) country model is not expected, use the countryId field instead.

countryId

[String]

Id of the country where the city is located
Example : 5000123

default

[Boolean]

Returns true if the city is the default city
Example : true

department

Department

The department where the city is located
Remark : In add APIs (mainly PUT requests) department model is not expected, use the departmentId field instead.

departmentId

[String]

Id of the department where the city is located
Example : 5000123

id

[String]

Id in database
Example : 5000123

latitude

[String]

Latitude of the city
Example : 5.9845W

longitude

[String]

Longitude of the city
Example : 37.3891N

name

[String]

Name of the city
Example : City 1

postcode

[String]

Postcode of the city
Example : 73000

regionId

[String]

Id of the region
Example : 123456

3.72. Clause

Basic clause type

Field Name Required Type Description Format

includeNullResults

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

[Object]

The value you search

3.73. ClauseBoolean

Boolean clause type

Field Name Required Type Description Format

includeNullResults

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

[Boolean]

The value you search.
Example : false

3.74. ClauseDate

String clause type

Field Name Required Type Description Format

includeNullResults

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

[Date]

The value you search.
Example : 2020-01-23T04:56:07.000+00:00

date-time

withTime

[Boolean]

Whether or not the time part should be taken into account (false by default)
Example : false

3.75. ClauseDouble

Double clause type

Field Name Required Type Description Format

includeNullResults

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

[BigDecimal]

The value you search.
Example : 12.6

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

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

ClauseProbabilityValue

Value of the probability
Example : 2

wildcards

[String]

When using the LIKE operator, indicates which characters should be interpreted as wildcards ('*%_' by default)
Example : *

3.78. ClauseProbabilityValue

Value of a Clause of type Probability

Type : enum (0, 1, 2, 3, 4, 9)

3.79. ClauseString

String clause type

Field Name Required Type Description Format

includeNullResults

[Boolean]

Set as true to include null results
Example : false

operator

X

ClauseOperation

The operator for your operation.
Example : IS

value

X

[String]

The value you search.
Example : Abcd

wildcards

[String]

When using the LIKE operator, indicates which characters should be interpreted as wildcards ('*%_' by default)
Example : *

3.80. ColorCodes

ColorCodes

Field Name Required Type Description Format

color1

[String]

First color code

color2

[String]

Second color code

color3

[String]

Third color code

3.81. Command

Command

Field Name Required Type Description Format

endDate

[Date]

End of the command
Example : 2020-01-23T04:56:07.000+00:00

date-time

error

[String]

Error of the command

id

[String]

The Id of the command

progress

CommandProgress

Progress of the command

result

[String]

Result of the command

startDate

[Date]

Start of the command
Example : 2020-01-23T04:56:07.000+00:00

date-time

status

[String]

Status of the command
Example : STARTED

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

[Integer]

Current index of the progress

max

[Integer]

Max index of the progress

3.83. Company

Company (Société)

Field Name Required Type Description Format

address

Address

The company's main address
Remark : In add APIs (mainly PUT requests) address model is not expected, use the addressId field instead.

addressId

[String]

The id of the company's main address

calendar

Calendar

Details of the calendar
Remark : In add APIs (mainly PUT requests) calendar model is not expected, use the calendarId field instead.

calendarId

[String]

ID of the calendar

code

[String]

Code of the company
Example : AK

color

[String]

Color attached to the company

currency

Currency

Details about the currency
Remark : In add APIs (mainly PUT requests) currency model is not expected, use the currencyId field instead.

currencyId

[String]

The currency id

id

[String]

Id in database
Example : 5000123

legalName

[String]

Legal name of the company

name

[String]

Name of a company
Example : Akuiteo

siren

[String]

SIREN number

siret

[String]

SIRET number

3.84. CompanyBase

Company

Field Name Required Type Description Format

code

[String]

Code of the company
Example : AK

id

[String]

Id in database
Example : 5000123

name

[String]

Name of a company
Example : Akuiteo

3.85. ComparisonOperator

Comparison operator

Type : enum (BEFORE, AFTER, EQUAL, BEFORE_EQUAL, AFTER_EQUAL)

3.86. CompletionPercentage

The completion percentage

Type : enum (0, 25, 50, 75, 100)

3.87. ConditionOfPayment

The condition of payment

Field Name Required Type Description Format

code

[String]

Payment code
Example : 5 days End of month by bank transfer
Remark : This property is read-only and provides current data without allowing modifications.

day

[Double]

Day of the month on which the payment will be done
Example : 10

double

deadLine

[String]

Number of days to carry out the payment
Example : 5

term

[String]

Period of payment
Example : 1

3.88. Contact

Contact

Field Name Required Type Description Format

address

Address

Details about the address of the contact.
This field cannot be set to null or omitted when creating a customer site, as it must at least include the mandatory 'country' field.
When updating a contact, it must contain at least the 'id' field if 'addressId' is set to null.

addressId (Deprecated)

[String]

The id of the contact's address.
When updating a contact, it must be set to an existing ID in the database if 'address' is set to null.

Example : 5000123
Deprecated : Use address instead

changeTracking

ChangeTracking

Date and user in case of creation and modification

code

[String]

The code of the contact.
Example : CT2024

comment

[String]

All comments about the contact.
Example : Lorem ipsum

customData

Map of CustomData

The custom data (when present)

customerRelatedInformation

List of CustomerRelatedInformation

Details about the customers related.

disappeared

[Boolean]

True if the contact has disappeared
Example : true

disappearedOn

[Date]

Date on which the contact disappeared
Example : 2020-01-23T04:56:07Z

date-time

email

[String]

Email of the contact
Example : customer@akuiteo.fr

email

email2

[String]

Second Email of the contact
Example : customer@akuiteo.fr

email

email2AddressNotKnown

[Boolean]

The Second Email address of the contact is not known
Example : true

email2BlackListed

[Boolean]

The Seconde Email address of the contact is black listed
Example : true

emailAddressNotKnown

[Boolean]

The Email address of the contact is not known
Example : true

emailBlackListed

[Boolean]

The Email address of the contact is black listed
Example : true

employee

EmployeeBase

Employee related to this contact
Warning: This property will soon be read-only. We advise against modifying its value when creating or updating the object that contains it.

Remark : In add APIs (mainly PUT requests) employee model is not expected, use the employeeId field instead.

employeeId

[String]

ID of the employee related to this contact
Example : 5000123

entryDate

[Date]

Entry date of the contact
Example : 2020-01-23T04:56:07Z

date-time

firstName

[String]

The first name of the contact.
Example : Phillipe

functionTitle

[String]

Function title of the contact
Example : Lorem ipsum

id

[String]

Id in database
Example : 5000123

keywords

[String]

Keyword of the contact
Example : Lorem ipsum

lastTracking

[Date]

Date of the last tracking of the contact
Example : 2020-01-23T04:56:07Z

date-time

maidenName

[String]

The maiden name of the contact
Example : Jeanne

markedForAnonymization

[Boolean]

Define if this contact is marked for anonymization
Example : true
Remark : This property is read-only and provides current data without allowing modifications.

mobilePhone

[String]

Mobile phone number of the contact
Example : 101010101

name

[String]

The name of the contact.
This field is mandatory.

Example : Jean

phone

[String]

Phone number of the contact
Example : 101010101

pictureId

[String]

ID of the picture of the contact
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

position

[String]

Position (also known as Function) of the contact in the company
Example : RESP GESTION

recipientOfAllSitesDunning

[Boolean]

Define if this contact can be the recipient of dunning from all the sites to which he is linked.
Example : true

recipientOfAllSitesInvoices

[Boolean]

Define if this contact can be the recipient of invoices from all the sites to which it is related.
Example : true

recipientOfDeliveryNote

[Boolean]

Define if this contact can be the recipient of delivery note.
Example : true

recipientOfDunning

[Boolean]

Define if this contact can be the recipient of dunning.
Example : true

recipientOfPurchaseOrder

[Boolean]

Define if this contact can be the recipient of purchase order.
Example : true

recipientOfQuotation

[Boolean]

Define if this contact can be the recipient of quotation.
Example : true

recipientOfQuote

[Boolean]

Define if this contact can be the recipient of quote.
Example : true

recipientOfReceipt

[Boolean]

Define if this contact can be the recipient of receipt.
Example : true

recipientOfSalesInvoice

[Boolean]

Define if this contact can be the recipient of sales invoice.
Example : true

recipientOfSalesOrder

[Boolean]

Define if this contact can be the recipient of sales order.
Example : true

recipientOfTerms

[Boolean]

Define if this contact can be the recipient of terms.
Example : true

service

[String]

Service of the contact
Example : Lorem ipsum

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

[String]

Civility of the contact.
If this field is omitted or null, it will automatically be set to the default value.

Example : M.

titleType

TitleType

Type of the title can be (UNKNOWN, NEUTRAL, MALE, FEMALE)
Example : UNKNOWN

3.89. ContactBase

Contact

Field Name Required Type Description Format

code

[String]

The code of the contact.
Example : CT2024

firstName

[String]

The first name of the contact.
Example : Phillipe

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the contact.
This field is mandatory.

Example : Jean

3.90. ContactCriteria

Criteria used on Contact Service when doing a Contact search

Field Name Required Type Description Format

code

ClauseString

Code of the contact

createdById

ClauseString

Creation of the contact

createdTime

ClauseDate

Created time of the contact

customData

Map of Clause

The custom data details (when present)

customerCategoryId

ClauseString

customerDivisionId

ClauseString

customerEntityId

ClauseString

customerId

ClauseString

Customer related to the contact

customerIncludeClosed (Deprecated)

ClauseBoolean

True if the search sould include Closed
Deprecated : Use customerValidity instead

customerSalesmanId

ClauseString

customerSubcategoryId

ClauseString

customerType

ClauseString

customerValidity

Validity

Details about the validity of the customer contact

disappeared

ClauseBoolean

Set as 'true' to return a contact that disappeared

email

ClauseString

Email of the contact

employeeId

ClauseString

Employe related to the contact

firstName

ClauseString

First name of the contact

function

ClauseString

Function of the contact

id

ClauseString

Ident of the contact

keyword

ClauseString

Keyword of the contact

lastTracking

ClauseDate

Last tracking of the contact

mobilePhone

ClauseString

Mobile phone number of the contact

modificationById

ClauseString

Last modification of the contact

modificationTime

ClauseDate

Modification time of the contact

name

ClauseString

Name of the contact

noLongerWorkForCustomerCompany

ClauseBoolean

Set as 'true' to indicate that a contact no longer works for the customer's company.

noLongerWorkForSupplierCompany

ClauseBoolean

Set as 'true' to indicate that a contact no longer works for the supplier's company.

phone

ClauseString

Phone number of the contact

readOption

ContactReadOption

Options for retrieving extra information concerning the contact

recipientOfQuotation

ClauseBoolean

True if the contact can be the recipient of quotation.

service

ClauseString

Service of the contact

siteDecisionMaker

ClauseBoolean

True if the Site is a decision maker

siteEmail

ClauseString

Email of the contact within one of its site related

siteFinancialContact

ClauseBoolean

True if the Site is a financial contact

siteHelpdeskBlacklisted

ClauseBoolean

True if the Site is blacklisted by the helpdesk

siteHelpdeskContact

ClauseBoolean

True if the Site is a help desk contact

siteHelpdeskMainContact

ClauseBoolean

True if the Site is the help desk main contact

siteHelpdeskVIPContact

ClauseBoolean

True if the Site is a help VIP contact

siteId

ClauseString

Site related to the contact

siteIntern

ClauseBoolean

True if the contact of the Site is an intern

siteMainContact

ClauseBoolean

True if the Site should be a main contact

siteSalesContact

ClauseBoolean

True if the Site is a sales contact

siteTrainingContact

ClauseBoolean

True if the Site is in training

supplierCategoryId

ClauseString

The ID of the category of the Supplier related to the contact

supplierCode

ClauseString

The code of the Supplier related to the contact

supplierDivisionId

ClauseString

The ID of the division of the Supplier related to the contact

supplierEntityId

ClauseString

The ID of the entity of the Supplier related to the contact

supplierId

ClauseString

The ID of the Supplier related to the Contact

supplierName

ClauseString

The name of the Supplier related to the contact

supplierPosition

ClauseString

The position of the Supplier related to the contact

supplierSiteDecisionMaker

ClauseBoolean

True if the Supplier site should be a decision maker

supplierSiteEmail

ClauseString

The email of the Supplier site related to the contact

supplierSiteFinanceContact

ClauseBoolean

True if the Supplier site should be a financial contact

supplierSiteId

ClauseString

The ID of the Supplier site related to the contact

supplierSiteMainContact

ClauseBoolean

True if the Supplier site should be a main contact

supplierSiteSalesContact

ClauseBoolean

True if the Supplier site should be a sales contact

supplierSubcategoryId

ClauseString

The ID of the sub category of the Supplier related to the contact

supplierTitle

ClauseString

The title of the Supplier related to the contact

tag

ClauseString

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

AccountingJournal

Details of the accounting journal
Remark : In add APIs (mainly PUT requests) accountingJournal model is not expected, use the accountingJournalId field instead.

accountingJournalId

[String]

ID of Accounting Journal
Example : 1203

afterTaxAmount

[Double]

After-Tax amount expressed in company currency
Example : 120.37

double

afterTaxAmountCurrency

[Double]

After-Tax amount in the currency
Example : 1500

double

approvalDate

[Date]

Date of approval
Example : 2020-01-23T04:56:07.000+00:00

date-time

approvalState

ApprovalState

State of approval
Example : NONE

assignmentIndicator

AssignmentIndicator

Specifies the type of project and phase: mono project and mono phase, mono project and multi phase, or multi project.

Example : SINGLE_PROJECT_MONO_PHASE

changeTracking

ChangeTracking

code

[String]

Code of the contract

companyCode

[String]

The company code
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

conditionOfPayment

ConditionOfPayment

currency

Currency

Currency used in the management object

currencyCode

[String]

Code of the currency used in the management object
Example : EUR

customData

Map of CustomData

The custom data (when present)

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

description

[String]

Description
Example : Lorem ipsum

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

exchangeRate

[Double]

The currency's exchange rate
Warning: This property will soon be read-only. We advise against modifying its value when creating or updating the object that contains it.

Example : 10.26

double

fiscalYear

FiscalYearBase

Belonging fiscal year
Remark : In add APIs (mainly PUT requests) fiscalYear model is not expected, use the fiscalYearId field instead.

fiscalYearId

[String]

Id of the fiscalYear
Example : 5000123

group

[Boolean]

Group object

id

[String]

Id in database
Example : 5000123

internal

[Boolean]

Internal object

manager

EmployeeBase

Details of the employee
Remark : In add APIs (mainly PUT requests) manager model is not expected, use the managerId field instead.

managerId

[String]

Id of the manager
Example : 5000123

methodOfPayment

MethodOfPayment

Method of payment
Example : CREDIT_CARD

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001

payment (Deprecated)

Payment

Deprecated : Use conditionOfPayment instead

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

preTaxAmount

[Double]

Pre-Tax Amount expressed in company currency
Example : 100.14

double

preTaxAmountCurrency

[Double]

Pre-Tax Amount in the currency
Example : 100.14

double

pricingMethod

PricingMethodBase

Details about the pricing method. The method by which pricing is to be determined.
Remark : In add APIs (mainly PUT requests) pricingMethod model is not expected, use the pricingMethodId field instead.

pricingMethodId

[String]

The id of the pricing method
Example : 5000125

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02

type

ManagementObjectType

Example : QUOTATION

3.93. ContractServiceBase

Contact service (basic information)

Field Name Required Type Description Format

code

[String]

The code of the contract service.
Example : CODE

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the contract service.
Example : Text

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

[Boolean]

Set as 'true' if the user is allowed to select multiple values from the valueSelectors.
Set as 'false' by default.

Example : true

defaultValue

[Object]

Default value of the field
Example : 50 (for the field 'Kilometers' case)

enabled

[Boolean]

Return true if the field is enabled
Example : true

freeValue

[Boolean]

Set as 'true' if the user is not restricted to the values listed in valueSelectors and can set a freely chosen value.
Example : true

id

[String]

ID of the control behavior
Example : 50000123

information

[String]

Additional information of the field
Example : Lorem ipsum

property

[String]

Name of the property controlled
Example : Kilometers

required

[Boolean]

Return true if the field is required
Example : true

valueSelectors

List of [string]

Customizable list of values for selection, allowing the restriction of permissible values in fields.

visible

[Boolean]

Return true if the field is visible
Example : true

3.95. Country

Country

Field Name Required Type Description Format

calendar

Calendar

The calendar of the company linked to the country
Remark : In add APIs (mainly PUT requests) calendar model is not expected, use the calendarId field instead.

calendarId

[String]

Id of the calendar
Example : 5000123

code

[String]

Code of the country
Example : FR

companyCode

[String]

The code of the company linked to the country
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

continent

[String]

The continent where the country is located
Example : AFRICA

currency

Currency

The country's currency
Remark : In add APIs (mainly PUT requests) currency model is not expected, use the currencyId field instead.

currencyId

[String]

Id of the country's currency
Example : 5000123

id

[String]

Id in database
Example : 5000123

isPartOfEU

[Boolean]

Returns true if the country is part of the European Union
Example : true

name

[String]

Name of the country
Example : Country 1

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

CrmAnalysisFilter

Set of filters on the analyzed data

group

CrmAnalysisGroup

Set of groups aggregating the data

objects

List of [string]

What the analysis is about:
* ONGOING_OPPORTUNITIES: ongoing opportunities
* WON_OPPORTUNITIES: won opportunities
* OST_OPPORTUNITIES: lost opportunities
* ONGOING_QUOTATIONS: ongoing quotations
* SIGNED_QUOTATIONS: signed quotations
* ARCHIVED_QUOTATIONS: archived quotations

Could be a combination of several types.
Warning: Opportunities linked to a quotation are not taken into account

Example : ["ONGOING_OPPORTUNITIES","SIGNED_QUOTATIONS"]

Enum: ONGOING_OPPORTUNITIES, ONGOING_QUOTATIONS, WON_OPPORTUNITIES, SIGNED_QUOTATIONS, LOST_OPPORTUNITIES, ARCHIVED_QUOTATIONS

view

CrmAnalysisView

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

[String]

Unused (technical field)

companyCode

ClauseString

Code of the company

currencyCode

ClauseString

Code of the currency

customerAccountManagerId

ClauseString

Ident of customer's account manager

customerAccountManagerSupervisorId

ClauseString

Ident of customer's account manager supervisor

customerCountryId

ClauseString

Ident of customer's country

customerFamilyId

ClauseString

Ident of the customer's project category

customerGrouping1

ClauseString

Customer's grouping

customerGrouping2

ClauseString

Customer's grouping 2

customerId

ClauseString

Ident of customer

customerRegionId

ClauseString

Ident of customer's address region

customerSalesmanId

ClauseString

Ident of customer's salesman

customerSalesmanSupervisorId

ClauseString

Ident of customer's salesman supervisor

customerSectorId

ClauseString

Ident of customer's sector

customerState

ClauseString

Customer's state

customerSubFamilyId

ClauseString

Ident of the customer's project subcategory

date

ClauseDate

For quotations: Actual signature date or archived date or expected signature date.
For opportunities: Actual signature date or loss date or expected signature date.

groupCustomer

ClauseBoolean

Group of companies of the customer

phaseId

ClauseString

Ident of the phase

pipelineId

ClauseString

Ident of the pipeline

probability

ClauseProbability

Probability of the crm analysis

productFamilyId

ClauseString

Ident of the product family

productSubFamilyId

ClauseString

Ident of the product sub-family

projectActivityId

ClauseString

projectCampaignId

ClauseString

Ident of the project's compaign

projectCompanyCode

ClauseString

Code of the project's company

projectDepartmentId

ClauseString

Ident of the project's department

projectDivisionGroupId

ClauseString

Ident of the project's division group

projectDivisionId

ClauseString

Ident of the project's division

projectEstablishmentId

ClauseString

projectFamilyId

ClauseString

Ident of the project's category

projectFinancialManagerId

ClauseString

Ident of the project's financial manager

projectId

ClauseString

Ident of the project (equivalent to the code of the project)

projectManagerId

ClauseString

Ident of the project manager of the project

projectMarketId

ClauseString

Ident of project group of the project

projectProductionManagerId

ClauseString

Ident of the project's product manager

projectSalesManagerId

ClauseString

Ident of the project's sales manager

projectState

ClauseString

State of project

projectSubFamily2Id

ClauseString

Ident of the project's sub-category level 2

projectSubFamilyId

ClauseString

Ident of the project's sub-category

projectVintageId

ClauseString

Ident of the year (vintage) of the project

prospect

ClauseBoolean

True is customer is a prospect

salesManagerId

ClauseString

Ident of the sales manager

salesManagerSupervisorId

ClauseString

Ident of the sales manager supervisor

subPhaseId

ClauseString

Ident of the sub-phase

technicalManagerId

ClauseString

Ident of the technical manager

technicalManagerSupervisorId

ClauseString

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
Example : {"example":["PROJECT_ACTIVITY_NAME","PROJECT_ACTIVITY_ID"]}

by

List of CrmAnalysisGroupType

Data analysis' axis (Clustering).
The opportunities do not support some groups such as Technical manager and supervisor.

Example : ["SALES_MANAGER_SUPERVISOR_CODE","SALES_MANAGER_SUPERVISOR_ID"]

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

[String]

Aggregation of lines (Quotation or opportunity) by Month, Quarter, Semester (Half) or Year.

Example : MONTH

Enum: MONTH, QUARTER, HALF, YEAR, MONTH, QUARTER, HALF, YEAR

objective

[Boolean]

Only for quotation, if true exclude data whose maturity level is 9

Example : false

value

[String]

Type of measure on which the analysis is calculated.
* QUANTITY: (number of days) For quotations: quantity on the quotation lines
* AMOUNT: on total amount of the analysed object including discount
* ORIGINAL_AMOUNT: on total amount before tax, including discount and in original currency

Example : AMOUNT

Enum: QUANTITY, AMOUNT, ORIGINAL_AMOUNT, QUANTITY, AMOUNT, ORIGINAL_AMOUNT

weighting

[String]

If NONE no weighting, if FROM_OBJECT then we use the weighting coefficient on the quotation and the commission rate on opportunities
Otherwise, depending on the degree of maturity of the prospect (X), we will use the `weightingForcedX` field
for opportunities : if FROM_OBJECT then we use the commission rate

Example : NONE

Enum: NONE, FORCED, FROM_OBJECT, NONE, FORCED, FROM_OBJECT

weightingForced0

[Double]

Degree 0 of probability if field 'weighting' is at the value FORCED

Example : 0

double

weightingForced1

[Double]

Degree 1 of probability if field 'weighting' is at the value FORCED

Example : 0.1

double

weightingForced2

[Double]

Degree 2 of probability if field 'weighting' is at the value FORCED

Example : 0.2

double

weightingForced3

[Double]

Degree 3 of probability if field 'weighting' is at the value FORCED

Example : 0.3

double

weightingForced4

[Double]

Degree 4 of probability if field 'weighting' is at the value FORCED

Example : 0.4

double

weightingForced9

[Double]

Degree 9 of probability of the prospect if field 'weighting' is at the value FORCED

Example : 1

double

3.101. Currency

Currency

Field Name Required Type Description Format

code

[String]

Code of the currency
Example : EUR

endDate

[Date]

End date for using the currency
Example : 2020-01-23T04:56:07.000+00:00

date-time

euro

[Boolean]

Returns true if the currency is in euro
Example : true

euroRate

[Double]

Exchange rate against the euro.
By default, this field contains the exchange rate corresponding to the current date.

Example : 0.9678

double

euroRateEndDate

[Date]

End date of the exchange rate (euroRate field).
Example : 2020-01-23T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

euroRateStartDate

[Date]

Start date of the exchange rate (euroRate field).
Example : 2020-01-23T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the currency
Example : Euro

order

[Integer]

Order number of the currency
Example : 17

3.102. CustomData

Custom data

Field Name Required Type Description Format

label

[String]

Label of the custom data
Example : REFERENCE_4

name

[String]

Name of the custom data
Example : Reference 4

realOrder

[Integer]

Order number to display

int32

type

CustomDataType

Type of the custom data
Example : NUMBER

value

[Object]

Value of the custom data
Example : Autoref 010520

3.103. CustomDataPage

Page of the custom data

Field Name Required Type Description Format

columnNumber

[Integer]

Number of custom data page columns.
Example : 15

id

[String]

ID of the custom data page

name

[String]

The name of the custom data page.
Example : Text

order

[Integer]

The order (ranking) of the custom data page.
Example : 1

int32

3.104. CustomDataParam

Description of a parameter of custom data

Field Name Required Type Description Format

id

[String]

ID of the custom data

keywordId

[String]

ID of the keyword

label

[String]

Label of the custom data
Example : REFERENCE_4

multiLine

[Boolean]

True if custom data is multi line

name

[String]

Name of the custom data

order

[Integer]

Order of the custom data

int32

page

CustomDataPage

Page of the custom data
Remark : In add APIs (mainly PUT requests) page model is not expected, use the pageId field instead.

pageId

[String]

ID of the page
Example : 5000123

pattern

CustomDataPattern

Validation pattern of the custom field
Example : DATE_TIME

property

[String]

Property of the custom data

realOrder

[Integer]

Real order of the custom data

int32

section

CustomDataSection

Section of the custom data
Remark : In add APIs (mainly PUT requests) section model is not expected, use the sectionId field instead.

sectionId

[String]

ID of the section
Example : 5000123

sequence

[Integer]

Sequence of the custom data

int32

textLimit

[Integer]

Text limit of the custom data

int32

type

CustomDataType

Type of the custom data
Example : NUMBER

viewLabel

[Boolean]

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

[Integer]

Column number of the custom data section

id

[String]

ID of the custom data section

name

[String]

Name of the custom data section

order

[Integer]

Order number of the custom data section
Example : 1

int32

pageId

[String]

ID of the page
Example : 5000123

type

CustomDataSectionType

By default set as SECTION
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.

Example : 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.108. CustomDataType

Type of the CustomData

Type : enum (NUMBER, DATE, BOOLEAN, ALPHANUMERIC)

3.109. Customer

Customer

Field Name Required Type Description Format

APE

[String]

Customer's main activity code (Activité Principal Exercé).
Example : 01.12Z

SIREN

[String]

Siren number.
Example : 362 521 879

SIRET

[String]

Siret number.
Example : 362 521 879 00034

accountManager

EmployeeBase

Details about the account management
Remark : In add APIs (mainly PUT requests) accountManager model is not expected, use the accountManagerId field instead.

accountManagerId

[String]

The ID of the account manager.
Example : 5000123

accountingParameters

AccountingParameters

Details about financial informations

accountingPeriod

[String]

Accounting period or financial period (Fr: Exercice).

Example : 24

address

Address

Details about the address of the customer
Remark : In add APIs (mainly PUT requests) address model is not expected, use the addressId field instead.

addressId (Deprecated)

[String]

The ID of the address of the customer.
When updating a customer, this field must be set to an existing ID in the database if 'address' is set to null.
Deprecated see address

Deprecated :

automaticUnpaidInvoiceReminder

[Boolean]

Set as true if the customer must to reminder automatically for unpaid invoices.
Set as true by default.

Example : true

bankingInformations

List of BankingInformation

Details about the list of banking information for this customer.
To add or update banking information, use the dedicated api 'Replace a customer's banking information.'
Non-SEPA data (provided in the noneSepa field) is not currently supported and will always be null.

category

Category

Details about the category of the customer
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

The ID of the category of the customer
Example : 5000123

changeTracking

ChangeTracking

Creation and modification date and user

closure

[Date]

Closing date.
This field cannot be updated using the customer creation or update API.

Example : 2020-01-23T04:56:07Z

date-time

code

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

companyCode

[String]

The company code of the customer
Example : AKSAS

conditionOfPayment

FinancialConditionOfPayment

The condition of payment for the customer.

customData

Map of CustomData

The custom data (when present)

email

[String]

The email of the customer.
To update this field, see the email field in the address field.

Example : jean@email.com
Remark : This property is read-only and provides current data without allowing modifications.

entity

Entity

Detail about the entity of the customer.
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityId

[String]

The ID of the entity
Example : 5000123

equity

[Double]

Corporate capital or capital stock of the customer
Example : 15000

double

exclusionCodes

[String]

The exclusion code (separated by '/')
Example : Text

externalReference

[String]

The external customer identification
Example : Lorem ipsum

firstPricingMethod

PricingMethodBase

Details about the first princing method
Remark : In add APIs (mainly PUT requests) firstPricingMethod model is not expected, use the firstPricingMethodId field instead.

firstPricingMethodId

[String]

First pricing method id
Example : 5000123

headcount

[Double]

The number of employees in the company of the customer (Fr: Effectif)

Example : 1000

double

id

[String]

Id in database
Example : 5000123

indicators

CustomerIndicators

Customer Indicators

isProspectValidated

[Boolean]

Indicates whether the prospect has been validated. If the type field is already set to CUSTOMER, this field is no longer relevant.
Example : true
Remark : This property is read-only and provides current data without allowing modifications.

keywords

[String]

The keywords of the customer separated by '/')
Example : Text

languageCode

[String]

The language code for the customer
Example : fr

lastTracking

[Date]

Last tracking date
Example : 2020-01-23T04:56:07Z

date-time

legalForm

[String]

Legal status for the customer (forme juridique)
Example : SARL

legalName

[String]

The first legal name of the customer (Fr: Nom complet)
If this field is omitted or null, it will automatically be set to the value of the 'name' field.

Example : AKSAS

legalName2

[String]

The second legal name of the customer (Fr: Suite du nom complet)

Example : AKSAS

level1grouping

[String]

The code for the first grouping level
Example : 3-L

level2grouping

[String]

The code for the second grouping level
Example : MIDDLE MARKET

manualUnpaidInvoiceReminder

[Boolean]

Set as true if the customer must to reminder manually for unpaid invoices.
Set as true by default.

Example : true

methodOfPayment

MethodOfPayment

Method of payment
Example : CREDIT_CARD

name

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

notes

[String]

Customer notes (comment)
Example : Lorem ipsum

open

[Date]

Opening date
Example : 2020-01-23T04:56:07Z

date-time

phone

[String]

The phone of the customer.
To update this field, see the email field in the address field.

Example : 101010101
Remark : This property is read-only and provides current data without allowing modifications.

profession

Profession

Details about the profession of the customer.
Remark : In add APIs (mainly PUT requests) profession model is not expected, use the professionId field instead.

professionId

[String]

The ID of the profession of the customer.
Example : 5000123

professionalCategory

ProfessionalCategory

Details about the professional category of the customer.
Remark : In add APIs (mainly PUT requests) professionalCategory model is not expected, use the professionalCategoryId field instead.

professionalCategoryId

[String]

The ID of the professional category of the customer.
Example : 5000123

revenue

[Double]

Revenue (C.A)
Example : 200

double

salesman

EmployeeBase

Details about the salesman (Commercial).
Remark : In add APIs (mainly PUT requests) salesman model is not expected, use the salesmanId field instead.

salesmanId

[String]

The ID of the salesman
Example : 5000123

salesmen

List of LinkedSalesmen

List of the linked salesmen

secondPricingMethod

PricingMethodBase

Details about the second princing method
Remark : In add APIs (mainly PUT requests) secondPricingMethod model is not expected, use the secondPricingMethodId field instead.

secondPricingMethodId

[String]

Second pricing method id.
Example : 5000123

sector

Sector

Details about the sector.
Remark : In add APIs (mainly PUT requests) sector model is not expected, use the sectorId field instead.

sectorId

[String]

The ID of the sector
Example : 5000123

serviceProviderProject

ServiceProviderProject

Details about the service provider project.

sites

List of Site

List of the customer sites

status

CustomerStatus

Details about the customer Status
Remark : In add APIs (mainly PUT requests) status model is not expected, use the statusId field instead.

statusId

[String]

The ID of the customer status.
Example : 5000123

subCategory

SubCategory

Details about the sub Category of the customer.
Remark : In add APIs (mainly PUT requests) subCategory model is not expected, use the subCategoryId field instead.

subCategoryId

[String]

Customer sub-category ID
Example : 5000123

taxInformation

CustomerTaxInformation

Details about the customer Tax Information.

thirdPartyLinkType

ThirdPartyLinkType

Third party link type for this customer.
When “requiredSiren” is set to “true” in the ThirdPartyLinkType entered here, the “SIREN” field for this customer becomes mandatory.

Remark : In add APIs (mainly PUT requests) thirdPartyLinkType model is not expected, use the thirdPartyLinkTypeId field instead.

thirdPartyLinkTypeId

[String]

The Id of the third party link type.
Example : 5000123

type

CustomerType

Customer or Prospect
Example : CUSTOMER

unit

[String]

The unit related to revenue.
Example : M EUROS

3.110. CustomerBase

Customer

Field Name Required Type Description Format

code

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

3.111. CustomerCriteria

Criteria used on Customer when doing a Customer search

Field Name Required Type Description Format

accountManagerId

ClauseString

activeModule

ActiveModule

Example : EXPENSE_REPORTS

changeTracking

ChangeTrackingCriteria

Change tracking criteria

city

ClauseString

closure

ClauseDate

Closing date of the customer

code

ClauseString

companyId

ClauseString

ID of the company

countryCode

ClauseString

countryId

ClauseString

createdById

ClauseString

createdTime

ClauseDate

Created date of the customer

customData

Map of Clause

The custom data details (when present)

customerInternalType

ClauseString

Internal type of the customer.
* EXTERNAL : Use this string to filter on external customers.
* INTERNAL : Use this string to filter on internal customers.
* VIRTUAL : Use this string to filter on virtual customers.

(See CustomerInternalType)

departmentCode

ClauseString

departmentId

ClauseString

divisionId

ClauseString

entityId

ClauseString

externalReference

ClauseString

filterOnLinkCustomerToBill

[Boolean]

To apply the linked customer id filter to get customers to bill (with third-party links)

filterOnLinkProjectCustomer

[Boolean]

To apply the project filter to the link Customer Project

group

ClauseBoolean

Set as 'true' to return the customer checked as group

id

ClauseString

intercoCode

ClauseString

keywords

ClauseString

lastTracking

ClauseDate

Last tracking date of the customer

level1grouping

ClauseString

level2grouping

ClauseString

linkedCustomerIdForCustomerToBill

ClauseString

modificationById

ClauseString

modificationTime

ClauseDate

Modification date of the customer

name

ClauseString

open

ClauseDate

Opening date of the customer

postalCode

ClauseString

projectId

ClauseString

Ident of the project (equivalent to the code of the project)

readOption

CustomerReadOption

The customer read option

reconciliationAccount

ClauseString

referentialDate

[Date]

Date where the customer must be active (opnen and not closed)
Example : 2020-01-23T04:56:07Z

date-time

regionCode

ClauseString

regionId

ClauseString

salesmanId

ClauseString

siren

ClauseString

Siren number

siret

ClauseString

Siret number

statusId

ClauseString

tag

ClauseString

type

ClauseString

3.112. CustomerIndicator

Customer Indicator

Field Name Required Type Description Format

byDefault

[Boolean]

Set as true to use this customer indicator by default. Set as false by default
Example : false

code

[String]

Code of the Customer Indicator

colorHexCode

[String]

The Hexadecimal color code for this customer Indicator

customerId (Deprecated)

[String]

ID of the Customer
Example : 5000123
Deprecated : This field is deprecated and will be removed in future versions.

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the Customer Indicator

order

[Integer]

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

ClauseBoolean

True if customer indicator is by default

code

ClauseString

colorHexCode

ClauseString

id

ClauseString

name

ClauseString

3.114. CustomerIndicators

Indicators of a customer

Field Name Required Type Description Format

customerId

[String]

ID of the Customer
Example : 5000123

indicator1

CustomerIndicator

The first indicator

indicator2

CustomerIndicator

The second indicator

indicator3

CustomerIndicator

The third indicator

3.115. CustomerInternalType

Customer type

Type : enum (INTERNAL, EXTERNAL, VIRTUAL)

3.116. CustomerLocation

Customer's Location

Field Name Required Type Description Format

code

[String]

Code of the customer site

customer (Deprecated)

CustomerBase

Details about the customer
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId (Deprecated)

[String]

Code of the associated customer
Example : CUST_001
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the customer site
Example : Paris

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

ChangeTracking

Creation and modification date and user

companyId

[String]

ID of the company
Example : 5000123

contactId

[String]

ID of the contact related to this contact
Example : 5000123

customerId (Deprecated)

[String]

ID of the customer related to this contact
Example : 5000123
Deprecated : Use thirdPartyRef instead

customerName

[String]

Name of the customer
Example : Akuiteo

id

[String]

Id in database
Example : 5000123

noLongerWorkForThisCompany

[Boolean]

True if the Contact no longer works for the company
Example : true

showAllRequests

[Boolean]

True if the Contact can see all the requests of his company
Example : true

thirdPartyRef

ThirdPartyReference

Customer third party link

3.119. CustomerSiteBase

Customer Sites

Field Name Required Type Description Format

code

[String]

Code of the customer site

customer (Deprecated)

CustomerBase

Details about the customer
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId (Deprecated)

[String]

Code of the associated customer
Example : CUST_001
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the customer site
Example : Paris

3.120. CustomerStatus

Customer Status

Field Name Required Type Description Format

code

[String]

Code of the Customer Status
Example : CODE

companyId

[String]

ID of the company
Example : 5000123

endDate

[Date]

The end date of the customer status.
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the Customer Status
Example : Name

ranking

[Integer]

The customer status ranking in the list
Example : 5

int32

3.121. CustomerTaxInformation

Customer Tax Information

Field Name Required Type Description Format

VATAreaId (Deprecated)

[String]

The Id of the VAT Area
Example : 500123
Deprecated : Use vatAreaId instead

VATNumber (Deprecated)

[String]

The number of the VAT rate
Example : 1
Deprecated : Use vatNumber instead

customerId

[String]

Id of the Customer
Example : 500124

euExempt

[Boolean]

The 'euExempt' field indicates whether Intracommunity VAT exemption applies.
This field can only be updated if the third party is an intra-EU party, meaning the third party's country is within the EU, and the third party is not local (i.e., the third party's country is different from the current company's country).
Set as 'false' by default.

Example : true

exempt

[Boolean]

The 'exempt' field indicates whether there is VAT exemption.
Set to true if the third party is exempt from VAT. This field can only be updated if the third party is in the same country as the current company.
Set as 'false' by default.

Example : true

vatArea

VATAreaBase

Details about the VAT Area.
Remark : In add APIs (mainly PUT requests) vatArea model is not expected, use the vatAreaId field instead.

vatAreaId

[String]

The Id of the VAT Area
Example : 500123

vatNumber

[String]

The number of the VAT rate
Example : 1

3.122. CustomerType

Customer type

Type : enum (CUSTOMER, PROSPECT)

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
Example : 2020-01-23T04:56:07.000+00:00

date-time

3.125. DayMoment

The moment in a day.

Type : enum (MORNING, AFTERNOON)

3.126. Department

Division

Field Name Required Type Description Format

activities

List of ActivityBase

Activities of the department

analysis

[String]

Analysis of the department

code

[String]

Code of the department
Example : 01-A

comment

[String]

Comment of the department

companyCode

[String]

Code of the company
Example : AKSAS

entity

Entity

Details of the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityId

[String]

ID of the entity

id

[String]

Id in database
Example : 5000123

name

[String]

Description of the department
Example : Lorem Ipsum

projectType

ProjectType

Type of the project
Example : EXTERNAL

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

[Double]

The discount amount
Example : 150.75

double

amountCurrency

[Double]

The discount amount in the currency
Example : 150.75

double

percentage

[Double]

The discount percentage
Example : 20

double

type

DiscountType

Type of discount (PERCENT, AMOUNT)
Example : PERCENT

3.129. DiscountType

Type of discount

Type : enum (PERCENT, AMOUNT)

3.130. Division

Division

Field Name Required Type Description Format

code

[String]

Code of a division
Example : RA

companyId

[String]

Id of the company
Example : 5000123

group

DivisionGrouping

Details about the group
Remark : In add APIs (mainly PUT requests) group model is not expected, use the groupId field instead.

groupId

[String]

ID of the group
Example : 5000123

id

[String]

Id in database
Example : 5000123

name

[String]

Name of a division
Example : Rhone-Alpes

3.131. DivisionGrouping

Division grouping

Field Name Required Type Description Format

code

[String]

Code of a division grouping
Example : WST

id

[String]

Id in database
Example : 5000123

name

[String]

Name of a division grouping
Example : West

serviceId

[String]

ID of the service
Example : 5000123

3.132. DmfBase

A dmf (a right in akuiteo D - Functional Area, M - Module, F - Feature)

Field Name Required Type Description Format

code

[String]

The code of the right(dmf).
Example : AF0406

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the right(dmf).
Example : INFO

3.133. Document

Details about document (file or link)

Field Name Required Type Description Format

action

Action

Details about the action performed on the document
Example : ADD

archived

[Boolean]

Return true if the document is archived.
To update this field, use Archive or unarchive document

Example : false

category

Category

All details about the category of the product
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

category1

[String]

First category of the document
Example : CAT1

category2

[String]

Second category of the document
Example : CAT2

category3

[String]

Third category of the document
Example : CAT3

categoryId

[String]

The Id of the category
Example : 100024

changeTracking

ChangeTracking

Creation and modification date and user

classification

[String]

Classification of the document.
To change this field, use Classify a document

Example : STD

companyId

[String]

ID of the company
Example : 5000123

description

[String]

The description of the document
Example : Text

documentType

[String]

Type of the document.
Warning: This property will soon be read-only. We advise against modifying its value when creating or updating the object that contains it.

Example : File

externalDMSUuid

[String]

External ID when you use a DMS
Example : OD1245126

fileName

[String]

File name
Example : thisFile.pdf

fileUrl

[String]

File url. This field cannot be updated once it has been created.
Example : myFiles/thisFile.pdf

id

[String]

Is of the document
Example : 5000123

lienUrl

[String]

URL of the document
Example : myStorage.com/myFiles/thisFile.pdf

links

List of DocumentLink

Details about document's links

locked

[Boolean]

Set as true if the document is locked.
To update this field, use Lock and unlock document

Example : false

original

[Boolean]

Return true if the document is an original.
To update this field, use only the specific API: Set a document record sheet as original or Set a document record sheet as not original

Example : false

owner

EmployeeBase

Details about the publisher of the document.
Remark : In add APIs (mainly PUT requests) owner model is not expected, use the ownerId field instead.

ownerId

[String]

ID of the owner of the document.
Example : 5001206

preview

[String]

Preview of the document
Example : data:image

publicationDate

[Date]

Publication date
Example : 2020-01-23T04:56:07.000+00:00

date-time

publishedBy

UserBase

Details about the publisher of the document.
Remark : In add APIs (mainly PUT requests) publishedBy model is not expected, use the publishedById field instead.

publishedById

[String]

ID of the publisher of the document.
Example : 5001206

subCategory

SubCategory

All details about the sub-category of the product
Remark : In add APIs (mainly PUT requests) subCategory model is not expected, use the subCategoryId field instead.

subCategoryId

[String]

The Id of the sub-category
Example : 11037

subClassification

[String]

Sub-classification of the document
To change this field, use Classify a document

Example : EDITIONS

title

X

[String]

Title of the document
Example : Title

tokenPreview

[String]

Token to request by url the preview of the document
Example : 8946A85V85D851DF

url

[String]

URL of the document
Example : myFiles/thisFile.pdf

version

[Double]

Version of the document
Example : 1

double

versionId

[String]

ID of the version
Example : 5000123

A link between a document and any other object

3.135. DocumentVersion

DocumentVersion

Field Name Required Type Description Format

classification

[String]

Classification of the document.
Example : STD

documentId

[String]

ID of the document
Example : 500111635

id

[String]

Id in database
Example : 5000123

title

[String]

Title of the document
Example : Title

version

[Double]

Version number
Example : 1

double

3.136. DueDate

Due date

Field Name Required Type Description Format

amount

[Double]

Amount to pay
Example : 5000123

double

currencyCode

[String]

Code of the currency
Example : EUR

date

[Date]

Due date
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

invoiceId

[String]

ID of the invoice
Example : 5000123

3.137. DueDateCriteria

Criteria used to get more details about the due date

Field Name Required Type Description Format

invoiceId

ClauseString

Ident of the invoice

3.138. Durations

Duration in different units

Field Name Required Type Description Format

durationDay

[Double]

Duration in day
Example : 0.25

double

durationHour

[Double]

Duration in hour
Example : 2.7

double

durationHourMinute

[Double]

Duration in hour minute
Example : 2.3

double

durationMinute

[Double]

Duration in minute
Example : 240

double

3.139. DutiableCriteria

Search criteria for dutiable fields

Field Name Required Type Description Format

forcedVat

ClauseBoolean

Forced VAT clause

vat1

ClauseString

VAT code 1

vat2

ClauseString

VAT code 2

3.140. DutiableLine

Tax Line

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

additionalFreeFields

AdditionalFreeFields

Additional free fields of a line

afterTaxAmountTotal

[Double]

Total After-Tax amount expressed in company currency
Example : 1500

double

afterTaxAmountTotalCurrency

[Double]

Total After-Tax amount in the currency
Example : 1500

double

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

complementName

[String]

Description of the line
Example : Lorem ipsum

forcedVat

[Boolean]

Forced VAT for the line
Example : true

generalAccount

[String]

General Account
Example : 411000

id

[String]

Id in database
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

resource

EmployeeBase

Resource allocated to complete the task
Remark : In add APIs (mainly PUT requests) resource model is not expected, use the resourceId field instead.

resourceId

[String]

Id of the resource allocated to complete the task

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

totalPrice

[Double]

Total price before discount expressed in company currency (unit price * quantity)
Example : 1200

double

totalPriceCurrency

[Double]

Total price before discount in the currency (unit price * quantity)
Example : 1200

double

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

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.

Example : 36.32

double

vat1

VATBase

Details about the first VAT rate

vat2

VATBase

Details about the second VAT rate

vatAmount1

[Double]

Amount expressed in company currency with the first VAT
Example : 120

double

vatAmount1Currency

[Double]

Amount in currency for the first VAT
Example : 126.57

double

vatAmount2

[Double]

Amount expressed in company currency for the second VAT
Example : 110

double

vatAmount2Currency

[Double]

Amount in currency for the second VAT
Example : 113.26

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

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

[Date]

The date of the transaction
Example : 2024-11-23T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

daysSpent

[Double]

Number of days since transaction was requested
Example : 240
Remark : This property is read-only and provides current data without allowing modifications.

double

id

[String]

Id in database
Example : 5000123

ranking

[Integer]

Rank number of transaction.
Example : 2

int32

rejectionReason

[String]

The reason for rejection if the signatory has refused to sign the document.
Example : Lorem ipsum

requesterId

[String]

The ID of the the transaction requester.
Example : 5000123

signatoryEmail

[String]

Signatory e-mail address
Example : user@email.com

signatoryId

[String]

The ID of th signatory
Example : 500012

signatoryType

ESignatureSignatoryType

The type of signatory for electronic signatures.
This field is required if signatoryId is provided.

Example : CONTACT

signatureDate

[Date]

The date of signature.
Example : 2024-11-23T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

signatureStatus

ESignatureStatus

Status of the signature
Example : IN_PROGRESS

status

TransactionStatus

Status of the transaction
Example : IN_PROGRESS

3.145. EmployeeBase

Employees

Field Name Required Type Description Format

action

Action

The action verb
Example : ADD

code

[String]

Code of the employee
Example : CASH

firstName

[String]

First name of the employee
Example : Jean

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the employee
Example : DUPONT

3.146. Entity

Entity

Field Name Required Type Description Format

code

[String]

The code of the entity
Example : 01-BRDX

companyId

[String]

ID of the company
Example : 5000123

division

Division

Details of the division
Remark : In add APIs (mainly PUT requests) division model is not expected, use the divisionId field instead.

divisionCode

[String]

Code of the division
Example : 01-DIV

divisionId

[String]

ID of the division
Example : 5000123

endDate

[Date]

End date of the entity
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

legalName

[String]

Legal name of the entity
Example : Customer care

name

[String]

The name of the entity
Example : Bordeaux

3.147. EntityBase

Entity

Field Name Required Type Description Format

code

[String]

The code of the entity
Example : 01-BRDX

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the entity
Example : Bordeaux

3.148. ErrorMessage

Error message for batch processing

Field Name Required Type Description Format

id

[String]

ID of the object in error
Example : 5000123

message

[String]

Detailed error message related to the identifier
Example : Lorem ipsum

3.149. ErrorResponse

The canonical model for problem details is a JSON [RFC7159] object.

Field Name Required Type Description Format

code

[String]

A human-readable explanation specific to this occurrence of the problem.

message

[String]

A human-readable explanation specific to this occurrence of the problem.

status

[Integer]

The HTTP status code ([RFC7231], Section 6)
Example : 404

timestamp

[Date]

Timestamp of the error
Example : 2020-01-23T04:56:07.000+00:00

date-time

title

[String]

A short, human-readable summary of the problem

type

[String]

A URI reference [RFC3986] that identifies the problem type

3.150. Event

Event

Field Name Required Type Description Format

category

CategoryEvent

Details about the category
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

ID of the category
Example : 5000123

changeTracking

ChangeTracking

Date and user of creation and modification

comment

[String]

Comment of the event
Example : contacter M bob

companyCode

[String]

Company of the supplier
Example : AKSAS

completion

EventCompletion

Details about the completion
Example : NOT_STARTED

completionPercentage

CompletionPercentage

Value of a Clause of type Probability

Example : 0

customData

Map of CustomData

The custom data (when present).

date

[Date]

Date of the event
Example : 2020-01-23T04:56:07Z

date-time

duration

[Integer]

Duration of the event
Example : 1

int32

endDate

[Date]

End date of the event
Example : 2020-01-23T04:56:07Z

date-time

finished

[Boolean]

Set as 'true' if the event is completed.
Set as 'false' by default.

Example : true

fullDay

[Boolean]

Set as 'true' to indicate if the appointment-type event is a full-day event.
Set as 'false' by default.

Example : true

id

[String]

Id in database
Example : 5000123

isHelpDeskEvent

[Boolean]

Set as 'true' if the Event is a help desk event.
Set as 'false' by default.

Example : true

mainCustomer

Customer

Details about the main customer

Remark : In add APIs (mainly PUT requests) mainCustomer model is not expected, use the mainCustomerId field instead.

mainCustomerId

[String]

ID of the main customer

Example : 5000123

mainProject

ProjectBase

Details about the main project

Remark : In add APIs (mainly PUT requests) mainProject model is not expected, use the mainProjectId field instead.

mainProjectId

[String]

ID of the main project (equivalent to the code of the project)
Example : 5000123

multiCompany

[Boolean]

True if multiCompany
Example : false

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

EmployeeBase

Details about the owner
Remark : In add APIs (mainly PUT requests) owner model is not expected, use the ownerId field instead.

ownerId

[String]

ID of the owner
Example : 5000123

priority

EventPriority

Details about the priority

Example : LOW

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]

Date of event reminder to the owner.
This field is only used for events whose type is RDV or TACHE .

Example : 2020-01-23T04:56:07Z

date-time

reply

ReplyEvent

Details about the reply event
Remark : In add APIs (mainly PUT requests) reply model is not expected, use the replyId field instead.

replyDate

[Date]

Reply date of the event
Example : 2020-01-23T04:56:07Z

date-time

replyId

[String]

ID of the reply
Example : 5000123

subject

[String]

Subject of the event
Example : contacter M bob

type

TypeEvent

Details about the type
Example : TACHE

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

ClauseString

Ident of the category

comment

ClauseString

Comment of the event

companyCode

ClauseString

Code of the company

completion

ClauseString

Details about the completion
(See EventCompletion)

customData

Map of Clause

The custom data details (when present)

endDate

ClauseDate

End date of the event

id

ClauseString

Ident of the event

isHelpDeskEvent

ClauseBoolean

Set as 'true' to return the help desk event.

mainCustomerId

ClauseString

ID of the main customer

mainProjectId

ClauseString

ID of the main project

objectLinksCampaign

ObjectLinksCampaignsCriteria

Search criteria for linked campaign objects

objectLinksProject

ObjectLinksProjectsCriteria

Search criteria for linked project objects

objectLinksPurchase

ObjectLinksPurchaseCriteria

Search criteria for linked purchase objects

objectLinksSales

ObjectLinksSalesCriteria

Search criteria for linked sales objects

objectLinksSupport

ObjectLinksSupportsCriteria

Search criteria for linked support objects

objectLinksTraining

ObjectLinksTrainingsCriteria

Search criteria for linked training objects

ownerId

ClauseString

Ident of the owner

priority

ClauseString

Priority of an Event
(See EventPriority)

readOption

EventReadOption

Options for retrieving extra information concerning the events

reminderDate

ClauseDate

Date of event reminder to the owner.

startDate

ClauseDate

Start date of the event

subject

ClauseString

Subject of the event

tag

ClauseString

You can use this clause to do a text search on the object and comment of the avent

type

ClauseString

Type of the event
(See TypeEvent)

3.153. EventDashboardCriteria

Criteria used on Event Service when doing a Event Dashboard search

Field Name Required Type Description Format

id

ClauseString

Ident of the event dashboard

includeFinished

ClauseBoolean

Set as True if you want to include finished event

intervalDate

EventIntervalDate

Interval date of the event dashboard
Example : LATE

ownerId

ClauseString

Ident of the owner

ownershipType

OwnershipType

Type of the ownership
Example : EVERYBODY

3.154. EventDashboardResult

Result of a Event's Dashboard search

Field Name Required Type Description Format

category

[String]

Category of event in the dashboard result
Example : Démo niv 1

categoryId

[String]

ID of the category
Example : 5000123

comment

[String]

The comment of the event in the dashboard result
Example : Lorem ipsum

customer

[String]

The customer of the event in the dashboard result
Example : Lorem ipsum

date

[Date]

Date of the event
Example : 2020-01-23T04:56:07Z

date-time

finished

[Boolean]

Set as true if the event dashboard result is finished
Example : true

icon

[String]

Icon used when the event is displayed
Example : fa fa-phone

id

[String]

Id in database
Example : 5000123

nature

[String]

The nature (type) of the event in the dashboard result.
Example : Lorem ipsum

owner

EmployeeBase

The owner of the event in the dashboard result

priority

EventPriority

Details about the priority
Example : LOW

subject

[String]

The subject of the event in the dashboard result
Example : Lorem ipsum

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.156. EventPriority

Priority of an Event

Type : enum (LOW, NORMAL, HIGH)

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

ClauseString

Ident of the owner

ownershipType

OwnershipType

Type of the ownership
Example : EVERYBODY

3.161. ExchangeRate

Exchange Rate

Field Name Required Type Description Format

currency

Currency

Details about the currency
Remark : In add APIs (mainly PUT requests) currency model is not expected, use the currencyId field instead.

currencyId

[String]

Id of the currency
Example : 12006

endDate

[Date]

End date for using the exchange rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

rate

[Double]

Exchange rate to convert the amount from euro into an amount in the revelant currency
Example : 0.9156852

double

startDate

[Date]

Start date for using the exchange rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

3.162. ExpenseReceiptSummary

Details about the expense receipt

Field Name Required Type Description Format

amount

[Double]

Amount on the receipt
Example : 240

double

currencyCode

[String]

Code of the currency
Example : EUR

date

[Date]

Date of the document
Example : 2020-01-23T04:56:07.000+00:00

date-time

expenseTypeCode

[String]

Code of expense's type
Example : FC

filePath

[String]

Path of the document
Example : C/User/MyUser/MyReceipt.pdf

rebillable

[Boolean]

Return true if the expense can be rebilled
Example : true

3.163. FeatureFlag

Application feature

Field Name Required Type Description Format

active

[Boolean]

If the feature is active

domain

[String]

Feature classification (main level)

id

[String]

Feature identifier

label

[String]

Feature description

subDomain

[String]

Feature classification (detail level)

3.164. FieldError

Object containg the error for a field

Field Name Required Type Description Format

elementId

[String]

The id of the sub element in error (which can have several errors)
Example : 154478

fieldName

X

[String]

The fieldName of the field in error
Example : code

message

X

[String]

The error message
Example : The field is required

3.165. FinancialConditionOfPayment

The condition of payment for a customer

Field Name Required Type Description Format

code

[String]

Payment code
Example : 5 days End of month by bank transfer
Remark : This property is read-only and provides current data without allowing modifications.

day

[Double]

Day of the month on which the payment will be done
Example : 10

double

deadLine

[String]

Number of days to carry out the payment
Example : 5

referenceOnBankStatement

[String]

Reference on bank statement
Example : LIVIA

term

[String]

Period of payment
Example : 1

3.166. FiscalYearBase

Fiscal Year

Field Name Required Type Description Format

code

[String]

Code of the FiscalYear

id

[String]

Id in database
Example : 5000123

journalEntryNumberingId

[String]

Id of the JournalEntryNumbering
Example : 5000123

name

[String]

Name of the FiscalYear

3.167. FiscalYearCommon

Fiscal Year

Field Name Required Type Description Format

closingDate

[date]

Date on which the fiscal year is officially closed.
This field is automatically updated during the accounting closure process.

Example : 2020-12-25
Remark : This property is read-only and provides current data without allowing modifications.

date

code

[String]

Code of the FiscalYear

endDate

[date]

Fiscal year's end date
Example : 2020-12-25

date

id

[String]

Id in database
Example : 5000123

journalEntryNumberingId

[String]

Id of the JournalEntryNumbering
Example : 5000123

name

[String]

Name of the FiscalYear

startDate

[date]

Fiscal year's start date
Example : 2020-12-25

date

3.168. FixedAssetRecordSheetBase

Fixed asset record sheet

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Name of fixed asset record sheet
Example : IMMO0409

3.169. FixedAssetRecordSheetCommon

Fixed asset record sheet

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Name of fixed asset record sheet
Example : IMMO0409

number

[String]

Number of fixed assets

Example : IMMO0409
Remark : This property is read-only and provides current data without allowing modifications.

3.170. FixedAssetType

Type of fixed asset

Type : enum (TANGIBLE, INTANGIBLE, FINANCIAL, NONE)

3.171. ForcedVatAmountHolder

VAT Amount and forced indicator holder

Field Name Required Type Description Format

amount

[Double]

Forced amount
Example : 124.56

double

forced

X

[Boolean]

Returns true if the amount is forced
Example : true

managementObjectLineId

[String]

ID of the management object line
Example : 780023

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

[Boolean]

Deletion allowed
Example : false

editable

[Boolean]

Update allowed
Example : false

fields (Deprecated)

List of ControlBehavior

Details about the control behavior linked to the field
Deprecated : Use controls instead

formSearchHidden

[Boolean]

Form search hidden
Example : false

insertable

[Boolean]

Creation allowed
Example : true

type

FormConfigType

Type of the formConfig
Example : TIMESHEET

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

[String]

Id in database
Example : 5000123

name

[String]

General account label
Example : Customers

3.175. GeneralAccountCommon

General account

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

General account label
Example : Customers

number

[String]

General account number
Example : 411000

3.176. GeographicalDepartment

Geographical department

Field Name Required Type Description Format

code

[String]

Code of the geographical department
Example : 7

companyId

[String]

The id of the company
Example : 5000123

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the geographical department
Example : ARDECHE

regionId

[String]

The id of the region
Example : 5000123

3.177. HistoryEntry

State of a project

Field Name Required Type Description Format

action

[String]

Action of the modification
Example : MODIFICATION

changeTracking

ChangeTracking

Date and user in case of creation and modification

comment

[String]

Comment of the modification
Example : MODIF_EN_LOT

entryType

HistoryEntryType

Type of the entry
Example : HEADER

fieldName

[String]

Name of the modified field
Example : Domaine

historyType

HistoryType

Type of the modified object
Example : ISSUE

id

[String]

ID of the modification
Example : 5000123

objectId

[String]

ID of the modified object
Example : 5000123

valueAfter

[String]

Value after the modification
Example : PROJECT_2

valueBefore

[String]

Value before the modification
Example : PROJECT_1

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.179. HistoryEntryType

Type of the entry

Type : enum (HEADER, DETAIL)

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]

Date of the holiday
Example : 2020-01-23T04:56:07.000+00:00

date-time

type

[String]

Type of holiday
Example : FERIE

3.182. IBAN

Details about the IBAN of a people

Field Name Required Type Description Format

accountNumber

[String]

Account number - 11 digits max
Example : 0000157841Z

country

[String]

Country code of the address in the database
Example : FR (for 'FRANCE')

key

[String]

Key of the IBAN
Example : 69

3.183. IdIdentifiable

Basic type for all pojos with an API ID

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.184. InternationalBankAccountDetails

International bank account details

Field Name Required Type Description Format

bank

InternationalBankIdentification

Details to identify the international bank

holder

InternationalBankHolder

Holder of the international bank

3.185. InternationalBankHolder

Holder of the international bank

Field Name Required Type Description Format

accountNumber

[String]

Account number
Example : 123456789

accountType

AccountType

Type of the account for the holder
Example : IBAN

firstName

[String]

The first name of the holder
Example : BRITA

name

[String]

The name of the holder
Example : RITA

3.186. InternationalBankIdentification

Details to identify the international bank

Field Name Required Type Description Format

bankAddress

Address

Details about bank address

bankCode

[String]

The code of the bank
Example : C8

bankName

[String]

The name of the bank
Example : UBA

bankName2

[String]

The name 2 of the bank
Example : UBA

bankType

BankType

The type of the bank
Example : BIC

3.187. InventoryAndPackaging

Details about Inventory and Packaging

Field Name Required Type Description Format

packagingType

[String]

The packaging type of the item
Example : Warehouse

packagingUnit

[Double]

The packaging unit of the item
Example : 12

double

3.188. InvoiceTypeEnum

Invoice type

Type : enum (INVOICE, CREDIT)

3.189. IssueBase

Issue base

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.190. IssueCommon

Issue common

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

number

[String]

The number of the issue.
Example : 24121212

title

[String]

The title of the issue.
Example : Text

3.191. Item

Item

Field Name Required Type Description Format

accountSettings

ItemAccountingInfo

Accounting information for an item.

billingMode

BillingMode

defaut billing mode for the item
Example : TIME_BASED

category

Category

All details about the category of the product
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

The Id of the category
Example : 10024

comment

[String]

Comment on the product
Example : Lorem ipsum

companyCode

[String]

The company code
Example : AKSAS

customData

Map of CustomData

All custom data to update

entityCode

[String]

The entity code
Example : Lyon

family (Deprecated)

[String]

The category of the product
Example : FML-LICENCE
Deprecated : Use category instead

grouping

[String]

The grouping of the product
Example : LICENCE

id

[String]

Id in database
Example : 5000123

inventory

[Boolean]

Returns true if the product is in the inventory
Example : true

inventoryAndPackaging

InventoryAndPackaging

Details about Inventory and Packaging

name

[String]

Identification name
Example : Maintenance

productionEstimatedDuration

[Double]

Estimated duration in minutes
Example : 30

double

quantityPrecision

[Double]

Number of decimals for this item quantity
Example : 2

double

reference

[String]

The reference of the product
Example : ENGLISH

shortName

[String]

Abbreviated designation
Example : Maint

subCategory

SubCategoryItem

All details about the sub-category of the product
Remark : In add APIs (mainly PUT requests) subCategory model is not expected, use the subCategoryId field instead.

subCategoryId

[String]

The Id of the sub-category
Example : 11037

subFamily (Deprecated)

[String]

The sub-category of the product
Example : RECCURENT
Deprecated : Use subCategory instead

unitPricePrecision

[Double]

Number of decimals for this item unit price
Example : 3

double

3.192. ItemAccountingInfo

Accounting information for an item

Field Name Required Type Description Format

disabledDate

[date]

Disabled date of the purchased item.
Example : 2020-12-25

date

exportCostAccount

[String]

Number of the export cost account set for purchased item export transactions.
Example : 411000

exportGroupAccount

[String]

Number of the export group account set for purchased item export group transactions.
Example : 411000

intraComCostAccount

[String]

Number of the intra-community cost account set for purchased item intracom transactions.
Example : 411000

intraComGroupAccount

[String]

Number of the intra-community group account set for purchased item intracom group transactions.
Example : 411000

intraComInternalAccount

[String]

Number of intra-community internal account set for purchased item intracom internal transactions.
Example : 411000

intraComSubscriptionAccount

[String]

Number of the intra-community subscription account set for purchased item intracom subscription transactions.
Example : 411000

localCostAccount

[String]

Number of the local cost account set for purchased item local transactions.
Remark: the account number must be a general cost account

Example : 411000

localGroupAccount

[String]

Number of the local group account set for purchased item local group transactions.
Example : 411000

localInternalAccount

[String]

Number of the local internal account set for purchased item local internal transactions.
Example : 411000

localSubscriptionAccount

[String]

Number of the local subscription account set for purchased item local subscription transactions.
Example : 411000

marketEndDate

[date]

End of market of the purchased item.
Example : 2020-12-25

date

reverseVAT

[Boolean]

Set the purchased item with reverse VAT liability.
Example : true

toBeEstablishedAccount

[String]

To be established account
Example : 411000

vatCode

X

[String]

Code of the VAT tax rate for the purchased item.
Example : 1

3.193. ItemBase

Item

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.194. ItemCommon

Details about the commons item's properties

Field Name Required Type Description Format

grouping

[String]

The grouping of the product
Example : LICENCE

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the product
Example : English licence

reference

[String]

The reference of the product
Example : ENGLISH

3.195. ItemLine

ItemLine

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

additionalFreeFields

AdditionalFreeFields

Additional free fields of a line

afterTaxAmountTotal

[Double]

Total After-Tax amount expressed in company currency
Example : 1500

double

afterTaxAmountTotalCurrency

[Double]

Total After-Tax amount in the currency
Example : 1500

double

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

complementName

[String]

Description of the line
Example : Lorem ipsum

discount

Discount

Discount applied

endDate

[Date]

Period end date
Example : 2020-01-23T04:56:07.000+00:00

date-time

forcedVat

[Boolean]

Forced VAT for the line
Example : true

generalAccount

[String]

General Account
Example : 411000

id

[String]

Id in database
Example : 5000123

item

Item

Details about the item
Remark : In add APIs (mainly PUT requests) item model is not expected, use the itemId field instead.

itemId

[String]

The Id of the product
Example : 10727

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

resource

EmployeeBase

Resource allocated to complete the task
Remark : In add APIs (mainly PUT requests) resource model is not expected, use the resourceId field instead.

resourceId

[String]

Id of the resource allocated to complete the task

startDate

[Date]

Period start date
Example : 2020-01-23T04:56:07.000+00:00

date-time

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

totalPrice

[Double]

Total price before discount expressed in company currency (unit price * quantity)
Example : 1200

double

totalPriceCurrency

[Double]

Total price before discount in the currency (unit price * quantity)
Example : 1200

double

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

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.

Example : 36.32

double

vat1

VATBase

Details about the first VAT rate

vat2

VATBase

Details about the second VAT rate

vatAmount1

[Double]

Amount expressed in company currency with the first VAT
Example : 120

double

vatAmount1Currency

[Double]

Amount in currency for the first VAT
Example : 126.57

double

vatAmount2

[Double]

Amount expressed in company currency for the second VAT
Example : 110

double

vatAmount2Currency

[Double]

Amount in currency for the second VAT
Example : 113.26

double

3.196. JournalEntryNumberingBase

Numbering of the fiscal year journal entries

Field Name Required Type Description Format

fiscalYearId

[String]

Id of the fiscalYear
Example : 5000123

id

[String]

Id in database
Example : 5000123

prefix

[String]

Prefix of the JournalEntryNumbering

3.197. JournalType

Type of journal

Type : enum (SALES, PURCHASE, BANK, TRANSACTION, SIMULATION)

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

[String]

Ident of the customer
Example : 5000123

employee

EmployeeBase

Details about the employee

employeeId

[String]

Ident of the employee aka salesmen
Example : 5000123

id

[String]

Id in database
Example : 5000123

mainLinkedSalesman

[Boolean]

True if the linked salesman is the main linked salesman
Example : false

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

[String]

Code of the locations status.
Example : PRET

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the location status.
Example : PRET MATERIEL

3.203. LossArgument

Arguments to lose

Field Name Required Type Description Format

archiveReasonId

[String]

The ID of the archive reason.
Example : 5000152

comment

[String]

Comment
Example : Lorem ipnum

lossDate

[Date]

Date of loss of opportunity
Example : 2020-01-23T04:56:07Z

date-time

stageId

[String]

The ID of the stage
It is only possible to set the stage with the status 'LOST'

Example : 5000152

3.204. Mail

Represents all information needed to send a mail (recipient, subject and body)

Field Name Required Type Description Format

body

[String]

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

[String]

Mail sender

replyTo

[String]

Mail reply to

title

[String]

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

ClauseString

The ID of the account manager for the customer

categoryId

ClauseString

Category of the customer

code

ClauseString

Name of the customer

id

ClauseString

Ident of the customer

salesmanId

ClauseString

The ID of the sales man for the customer

sectorId

ClauseString

Sector of the customer

subCategoryId

ClauseString

Subcategory of the customer

type

ClauseString

Type of the customer (between PROSPECT and CUSTOMER)

3.206. ManagementObject

Management object (pièce de gestion)

Field Name Required Type Description Format

accountingJournal

AccountingJournal

Details of the accounting journal
Remark : In add APIs (mainly PUT requests) accountingJournal model is not expected, use the accountingJournalId field instead.

accountingJournalId

[String]

ID of Accounting Journal
Example : 1203

afterTaxAmount

[Double]

After-Tax amount expressed in company currency
Example : 120.37

double

afterTaxAmountCurrency

[Double]

After-Tax amount in the currency
Example : 1500

double

approvalDate

[Date]

Date of approval
Example : 2020-01-23T04:56:07.000+00:00

date-time

approvalState

ApprovalState

State of approval
Example : NONE

assignmentIndicator

AssignmentIndicator

Specifies the type of project and phase: mono project and mono phase, mono project and multi phase, or multi project.

Example : SINGLE_PROJECT_MONO_PHASE

changeTracking

ChangeTracking

companyCode

[String]

The company code
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

conditionOfPayment

ConditionOfPayment

currency

Currency

Currency used in the management object

currencyCode

[String]

Code of the currency used in the management object
Example : EUR

customData

Map of CustomData

The custom data (when present)

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

description

[String]

Description
Example : Lorem ipsum

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

exchangeRate

[Double]

The currency's exchange rate
Warning: This property will soon be read-only. We advise against modifying its value when creating or updating the object that contains it.

Example : 10.26

double

fiscalYear

FiscalYearBase

Belonging fiscal year
Remark : In add APIs (mainly PUT requests) fiscalYear model is not expected, use the fiscalYearId field instead.

fiscalYearId

[String]

Id of the fiscalYear
Example : 5000123

group

[Boolean]

Group object

id

[String]

Id in database
Example : 5000123

internal

[Boolean]

Internal object

manager

EmployeeBase

Details of the employee
Remark : In add APIs (mainly PUT requests) manager model is not expected, use the managerId field instead.

managerId

[String]

Id of the manager
Example : 5000123

methodOfPayment

MethodOfPayment

Method of payment
Example : CREDIT_CARD

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001

payment (Deprecated)

Payment

Deprecated : Use conditionOfPayment instead

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

preTaxAmount

[Double]

Pre-Tax Amount expressed in company currency
Example : 100.14

double

preTaxAmountCurrency

[Double]

Pre-Tax Amount in the currency
Example : 100.14

double

pricingMethod

PricingMethodBase

Details about the pricing method. The method by which pricing is to be determined.
Remark : In add APIs (mainly PUT requests) pricingMethod model is not expected, use the pricingMethodId field instead.

pricingMethodId

[String]

The id of the pricing method
Example : 5000125

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02

type

ManagementObjectType

Example : QUOTATION

3.207. ManagementObjectBase

Basic information on the management object (pièce de gestion)

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

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

[String]

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

[Double]

After-Tax amount expressed in company currency
Example : 120.37

double

changeTracking

ChangeTracking

companyCode

[String]

The company code
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

currency

Currency

Currency used in the management object

currencyCode

[String]

Code of the currency used in the management object
Example : EUR

customData

Map of CustomData

The custom data (when present)

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

description

[String]

Description
Example : Lorem ipsum

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

preTaxAmount

[Double]

Pre-Tax Amount expressed in company currency
Example : 100.14

double

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

type

ManagementObjectType

Example : QUOTATION

3.210. ManagementObjectCriteria

Criteria used to get more details about the management object.

Field Name Required Type Description Format

afterTaxAmount

ClauseDouble

After tax amount of the management object

approvalDate

ClauseDate

Approval date of the management object

approvalState

ClauseString

Approval state of the management object

companyCode

ClauseString

Company code of the management object

creationDate

ClauseDate

Creation date of the management object

currencyCode

ClauseString

Currency code of the currency used in the management object

customData

Map of Clause

The custom data (when present)

date

ClauseDate

Date of the management object

description

ClauseString

Description of the management object

entityCode

ClauseString

Entity code of the management object

fiscalYearId

ClauseString

Id of the fiscal year

group

ClauseBoolean

True if group

id

ClauseString

ID of the management object

internal

ClauseBoolean

True if management object is internal

journalId

ClauseString

Id of the journal

managerId

ClauseString

Id of the manager linked with the management object

methodOfPayment

ClauseString

Method of payment of the management object

name

ClauseString

Name of the management object

preTaxAmount

ClauseDouble

Pre tax amount of the management object

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.211. ManagementObjectLine

Management object line (ligne de pièce de gestion)

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

additionalFreeFields

AdditionalFreeFields

Additional free fields of a line

afterTaxAmountTotal

[Double]

Total After-Tax amount expressed in company currency
Example : 1500

double

afterTaxAmountTotalCurrency

[Double]

Total After-Tax amount in the currency
Example : 1500

double

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

complementName

[String]

Description of the line
Example : Lorem ipsum

generalAccount

[String]

General Account
Example : 411000

id

[String]

Id in database
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

resource

EmployeeBase

Resource allocated to complete the task
Remark : In add APIs (mainly PUT requests) resource model is not expected, use the resourceId field instead.

resourceId

[String]

Id of the resource allocated to complete the task

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

totalPrice

[Double]

Total price before discount expressed in company currency (unit price * quantity)
Example : 1200

double

totalPriceCurrency

[Double]

Total price before discount in the currency (unit price * quantity)
Example : 1200

double

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

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.

Example : 36.32

double

3.212. ManagementObjectLineCommon

Common properties of management object line

Field Name Required Type Description Format

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

id

[String]

Id in database
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

projectTask

ProjectTaskCommon

Details about the project task of the project
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

Id of the project task
Example : 5000123

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

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.

Example : 36.32

double

3.213. ManagementObjectLineCriteria

Criteria used to get more details about the management object line.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

id

ClauseString

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

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

ClauseString

categoryId

ClauseString

companyId

ClauseString

The Id of the company

customerId

ClauseString

customerProjectId

ClauseString

Ident of the project (equivalent to the code of the project)

departmentId

ClauseString

divisionGroupingId

ClauseString

divisionId

ClauseString

entityId

ClauseString

financialManagerId

ClauseString

id

ClauseString

managerId

ClauseString

name

ClauseString

productionManagerId

ClauseString

projectGroupCode

ClauseString

projectState

ClauseString

referentialDate

[Date]

Date à laquelle l'affaire doit être active (en prod)
Example : 2020-01-23T04:56:07.000+00:00

date-time

salesManagerId

ClauseString

subCategoryId

ClauseString

subCategoryLevel2Id

ClauseString

tag

ClauseString

Unused at the moment

yearId

ClauseString

Ident of the year

3.216. ManagerVisibilityCriteria

Manager's criteria

Field Name Required Type Description Format

includeManager

[Boolean]

Include manager in the search result

includeResourcesTwoManagementLevelsBelow

[Boolean]

Include resources from two management levels below (N-2) in the search result

managerId

[String]

Id of the manager
Example : 5000123

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

AttachFileLocation

Location of the file to be attached.
Example : BODY

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).

mail

Mail

All details required to send an email (recipients, subject, body).

publishedDocuments

List of PublishedDocument

List of documents to be published as attached files.

replyTo

MessageRecipient

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

[String]

The email address of the recipient.
Example : jean@email.com

id

[String]

Id in database
Example : 5000123

summary

[String]

A brief summary or description of the recipient.
Example : Text

type

MessageRecipientType

Type of message recipient.
Example : USER

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

InternationalBankAccountDetails

Details of the beneficiary's international bank account, including identification and account holder information.

defaultBankDetail

[Boolean]

Set as true if this international bank detail will be used by default.
Example : false

intermediate

InternationalBankAccountDetails

Details of the intermediate's international bank account, including identification and account holder information.

A link between a target object and other objects

Link between an event and an object

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

[String]

Id in database
Example : 5000123

objectLinkId

[String]

ID of the object link
Example : 5000123

type

ObjectLinkType

Details about the type of the object link
Example : PROJECTS

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

ClauseString

ID of the campaign.
Note that only the IN and IS operators can be used for this criteria.

3.228. ObjectLinksProjectsCriteria

Criteria used on object linked

Field Name Required Type Description Format

phaseId

ClauseString

ID of the phase.
Note that only the IN and IS operators can be used for this criteria.

projectId

ClauseString

ID of the project.
Note that only the IN and IS operators can be used for this criteria.

projectTaskId

ClauseString

ID of the project task.
Note that only the IN and IS operators can be used for this criteria.

subPhaseId

ClauseString

ID of the subphase.
Note that only the IN and IS operators can be used for this criteria.

3.229. ObjectLinksPurchaseCriteria

Criteria used on object linked

Field Name Required Type Description Format

billingTable

ClauseString

ID of the billing table.
Note that only the IN and IS operators can be used for this criteria.

invoiceId

ClauseString

ID of the purchase invoice.
Note that only the IN and IS operators can be used for this criteria.

orderId

ClauseString

ID of the purchase order.
Note that only the IN and IS operators can be used for this criteria.

quoteId

ClauseString

ID of the quote.
Note that only the IN and IS operators can be used for this criteria.

receptionId

ClauseString

ID of the reception.
Note that only the IN and IS operators can be used for this criteria.

request

ClauseString

ID of the purchase request.
Note that only the IN and IS operators can be used for this criteria.

3.230. ObjectLinksSalesCriteria

Criteria used on object linked

Field Name Required Type Description Format

billingTableId

ClauseString

ID of the billing table.
Note that only the IN and IS operators can be used for this criteria.

deliveryId

ClauseString

ID of the delivery.
Note that only the IN and IS operators can be used for this criteria.

directDebitMandateId

ClauseString

ID of the direct debit mandate.
Note that only the IN and IS operators can be used for this criteria.

invoiceId

ClauseString

ID of the invoice.
Note that only the IN and IS operators can be used for this criteria.

opportunityId

ClauseString

ID of the opportunity.
Note that only the IN and IS operators can be used for this criteria.

orderId

ClauseString

ID of the order.
Note that only the IN and IS operators can be used for this criteria.

quotationId

ClauseString

ID of the quotation.
Note that only the IN and IS operators can be used for this criteria.

3.231. ObjectLinksSupportsCriteria

Criteria used on object linked

Field Name Required Type Description Format

contractId

ClauseString

ID of the contract.
Note that only the IN and IS operators can be used for this criteria.

contractServiceId

ClauseString

ID of the contract service.
Note that only the IN and IS operators can be used for this criteria.

issueId

ClauseString

ID of the issue.
Note that only the IN and IS operators can be used for this criteria.

supplierContractId

ClauseString

ID of the supplier contract.
Note that only the IN and IS operators can be used for this criteria.

taskId

ClauseString

ID of the task.
Note that only the IN and IS operators can be used for this criteria.

3.232. ObjectLinksTrainingsCriteria

Criteria used on object linked

Field Name Required Type Description Format

courseId

ClauseString

ID of the course.
Note that only the IN and IS operators can be used for this criteria.

sessionId

ClauseString

ID of the session.
Note that only the IN and IS operators can be used for this criteria.

3.233. Opportunity

Opportunity

Field Name Required Type Description Format

activity

Activity

All the information needed about the activity
Remark : In add APIs (mainly PUT requests) activity model is not expected, use the activityId field instead.

activityId

[String]

Id of the activity
Example : 5000123

actualSignatureDate

[Date]

Actual Signature date for the Opportunity
Example : 2020-01-23T04:56:07Z

date-time

address

Address

All the information needed about the address of the customer location
Remark : In add APIs (mainly PUT requests) address model is not expected, use the addressId field instead.

addressId

[String]

Id of the address
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

amount

[Double]

Amount of the opportunity
Example : 50000

double

amountCurrency

[Double]

Amount in currency of the opportunity
Example : 50000

double

archiveComment

[String]

Comment about the archive reason
Example : Lorem ipnum

archiveReason

ArchiveReasonBase

Details about the archive reason.
Remark : In add APIs (mainly PUT requests) archiveReason model is not expected, use the archiveReasonId field instead.

archiveReasonId

[String]

The ID of the archive reason
Example : 5000123

changeTracking

ChangeTracking

Date and user of creation and modification

city (Deprecated)

[String]

The city of the opportunity.
Deprecated : Use address instead

code

[String]

The code of the opportunity.

Example : OP2025

companyCode

[String]

The code of the company.
Example : AKSAS

contacts

List of Contact

List of an opportunity's Contact with their details

country (Deprecated)

[String]

The country of the opportunity.
Deprecated : Use address instead

currency

Currency

Details about the Currency
Remark : In add APIs (mainly PUT requests) currency model is not expected, use the currencyId field instead.

currencyCode

[String]

Code of the currency
Example : EUR

currencyId

[String]

ID of the currency.
During updates, if currencyCode is provided, this field is not updated and will automatically reflect the ID matching the entered currency code.

Example : 5000123

customData

Map of CustomData

The custom data (when present)

customer

Customer

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

Id of the customer
Example : 5000123

customerLocation

CustomerLocation

All the information needed about the customer location
Remark : In add APIs (mainly PUT requests) customerLocation model is not expected, use the customerLocationId field instead.

customerLocationId

[String]

Id of the customer location
Example : 5000123

department

Department

All the information needed about the department
Remark : In add APIs (mainly PUT requests) department model is not expected, use the departmentId field instead.

departmentId

[String]

Id of the department
Example : 5000123

description

[String]

The description of the opportunity.
Example : Loremp ipsum

endCustomer

Customer

All the information needed about the end customer
Remark : In add APIs (mainly PUT requests) endCustomer model is not expected, use the endCustomerId field instead.

endCustomerId

[String]

Id of the end customer
Example : 5000123

entity

Entity

All the information needed about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityId

[String]

Id of the entity
Example : 5000123

exchangeRate

[Double]

The currency's exchange rate
Example : 10.26
Remark : This property is read-only and provides current data without allowing modifications.

double

expectedSignatureDate

[Date]

The expected signature date of the opportunity
Example : 2020-01-23T04:56:07Z

date-time

financialManager

EmployeeBase

All the information needed about the Financial Manager
Remark : In add APIs (mainly PUT requests) financialManager model is not expected, use the financialManagerId field instead.

financialManagerId

[String]

Id of the Financial Manager
Example : 5000123

id

[String]

Id in database
Example : 5000123

lines

List of OpportunityLine

List of an opportunity's lines with their details

lossDate

[Date]

Loss date of the Opportunity
Example : 2020-01-23T04:56:07Z

date-time

mainContact

Contact

All the information needed about the Main Contact
Remark : In add APIs (mainly PUT requests) mainContact model is not expected, use the mainContactId field instead.

mainContactId

[String]

Id of the Min Contact
Example : 5000123

name

[String]

The name of the opportunity.
Example : ON PREMISE

openingDate

[Date]

The opening date of the opportunity
Example : 2020-01-23T04:56:07Z

date-time

origin

[String]

The origin of the opportunity.
Example : Lorem ipsum

originType

OriginType

All the information needed about the origin type
Remark : In add APIs (mainly PUT requests) originType model is not expected, use the originTypeId field instead.

originTypeId

[String]

Id of the origin type
Example : 5000123

pipe

Pipe

All the information needed about the pipe
Remark : In add APIs (mainly PUT requests) pipe model is not expected, use the pipeId field instead.

pipeId

[String]

Id of the pipe
Example : 5000123

postalCode (Deprecated)

[String]

The postal code of the opportunity.
Deprecated : Use address instead

probabilityLevel

ProbabilityLevel

The probability level.
Example : 0

productionEndDate

[Date]

The production end date of the opportunity
Example : 2020-01-23T04:56:07Z

date-time

productionManager

EmployeeBase

All the information needed about the Production Manager
Remark : In add APIs (mainly PUT requests) productionManager model is not expected, use the productionManagerId field instead.

productionManagerId

[String]

Id of the Production Manager
Example : 5000123

productionStartDate

[Date]

The production start date of the opportunity
Example : 2020-01-23T04:56:07Z

date-time

projectCategory

Category

All the information needed about the project Category
Remark : In add APIs (mainly PUT requests) projectCategory model is not expected, use the projectCategoryId field instead.

projectCategoryId

[String]

Id of the Project Category
Example : 5000123

projectManager

EmployeeBase

All the information needed about the Project Manager
Remark : In add APIs (mainly PUT requests) projectManager model is not expected, use the projectManagerId field instead.

projectManagerId

[String]

Id of the Project Manager
Example : 5000123

projectSubCategory

Category

All the information needed about the Project Sub Category
Remark : In add APIs (mainly PUT requests) projectSubCategory model is not expected, use the projectSubCategoryId field instead.

projectSubCategoryId

[String]

Id of the Project Sub Category
Example : 5000123

projectSubCategoryLevel2

Category

All the information needed about the project Sub Category Level 2
Remark : In add APIs (mainly PUT requests) projectSubCategoryLevel2 model is not expected, use the projectSubCategoryLevel2Id field instead.

projectSubCategoryLevel2Id

[String]

Id of the project Sub Category Level 2
Example : 5000123

quantity

[Double]

Quantity of the opportunity
Example : 4

double

salesManager

EmployeeBase

All the information needed about the Sales Manager
Remark : In add APIs (mainly PUT requests) salesManager model is not expected, use the salesManagerId field instead.

salesManagerId

[String]

Id of the Sales Manager
Example : 5000123

stage

Stage

All the information needed about the stage
Remark : In add APIs (mainly PUT requests) stage model is not expected, use the stageId field instead.

stageDate

[Date]

Date of the stage. This date corresponds to the creation date or the last change date of the stage.
Example : 2020-01-23T04:56:07Z

date-time

stageId

[String]

Id of the stage
Example : 5000123

strategic

[Boolean]

Strategic opportunity

tags

List of TagLinked

Details about the tag linked

title

[String]

The title of the opportunity.
Example : ON PREMISE

weightingCoefficient

[Double]

The opportunity's weighting coefficient.
Automatically updated when changing the probability level.
Manual changes are allowed only if authorized by the parameter; otherwise, the entered value is ignored.

Example : 0.85

double

year

Year

All the information needed about the year
Remark : In add APIs (mainly PUT requests) year model is not expected, use the yearId field instead.

yearId

[String]

Id of the year
Example : 5000123

3.234. OpportunityBase

OpportunityBase

Field Name Required Type Description Format

code

[String]

The code of the opportunity.

Example : OP2025

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the opportunity.
Example : ON PREMISE

3.235. OpportunityCriteria

Criteria of an Opportunity

Field Name Required Type Description Format

activityId

ClauseString

ID of the activity

actualSignatureDate

ClauseDate

Actual Signature date for the Opportunity

archiveComment

ClauseString

Comment about the archive reason

archiveReasonId

ClauseString

The ID of the archive reason

changeTracking

ChangeTrackingCriteria

Change tracking criteria

code

ClauseString

Code of the opportunity

companyId

ClauseString

ID of the company

country

ClauseString

Country of the Opportunity

creationDate (Deprecated)

ClauseDate

Creation Date of the Opportunity
Deprecated : Use changeTracking instead

currencyId

ClauseString

ID of the currency

customData

Map of Clause

The custom data details (when present)

customerCode

ClauseString

Code of the customer

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the opportunity

customerId

ClauseString

Id of the customer

customerLocationId

ClauseString

Ident of the customer location

customerLocationName

ClauseString

Name of the customer Location

customerSiteId

ClauseString

Ident of the customer site

description

ClauseString

Description of the Opportunity

endCustomerCode

ClauseString

Code of the end Customer

endCustomerId

ClauseString

Ident of the end customer

entityId

ClauseString

ID of the entity

expectedSignatureDate

ClauseDate

Expected Signature Date of the Opportunity

financialManagerCode

ClauseString

Ident of the Financial Manager

financialManagerId

ClauseString

Ident of the Financial Manager

id

ClauseString

Ident of the opportunity

lossDate

ClauseDate

Loss date of the Opportunity

name

ClauseString

Name of the opportunity

openingDate

ClauseDate

Opening Date of the Opportunity

origin

ClauseString

Origin of the opportunity

originTypeCode

ClauseString

Code of the Origin Type

originTypeId

ClauseString

Ident of the Origin Type

pipeCode

ClauseString

Code of the pipe

pipeId

ClauseString

Ident of the pipe

probabilityLevel

ClauseString

Probability level of the opportunity
(See ProbabilityLevel)

productionEndDate

ClauseDate

Production End Date of the Opportunity

productionManagerCode

ClauseString

Code of the Production Manager

productionManagerId

ClauseString

Ident of the Production Manager

productionStartDate

ClauseDate

Production Start Date of the Opportunity

projectCategoryCode

ClauseString

Code of the Category of the Opportunity

projectCategoryId

ClauseString

Ident of the Category of the Opportunity

projectManagerCode

ClauseString

Code of the Project Manager

projectManagerId

ClauseString

Ident of the Project Manager

projectSubCategoryCode

ClauseString

Code of the Sub Category of the Opportunity

projectSubCategoryId

ClauseString

Ident of the Sub Category of the Opportunity

projectSubCategoryLevel2Code

ClauseString

Code of the Sub Category Level 2 of the Opportunity

projectSubCategoryLevel2Id

ClauseString

Ident of the Sub Category Level 2 of the Opportunity

readOption

OpportunityReadOption

Options for retrieving extra information concerning the opportunity

salesManagerCode

ClauseString

Code of the Sales Manager

salesManagerId

ClauseString

Ident of the Sales Manager

stageCode

ClauseString

Code of the Stage

stageDate

ClauseDate

Date of the stage. This date corresponds to the creation date or the last change date of the stage.

stageId

ClauseString

Ident of the Stage

stageStatus

ClauseString

Status of the Stage
(See StageStatus)

strategic

ClauseBoolean

Strategic opportunity

tag

ClauseString

You can fill in the code or name of the opportunity in this field

tagId

ClauseString

ID of tag

3.236. OpportunityLine

Line of an Opportunity

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

amount

[Double]

Amount of the line
Example : 50000

double

amountCurrency

[Double]

Amount in currency of the line
Example : 50000

double

amountTotal

[Double]

Amount of the line
Example : 500000

double

amountTotalCurrency

[Double]

Amount in currency of the line
Example : 500000

double

comment

[String]

Comment of the line
Example : Lorem ipsum

currency

Currency

Details about the currency

currencyCode

[String]

Code of the currency
Example : EUR

customData

Map of CustomData

The custom data details (when present)

id

[String]

Id in database
Example : 5000123

margin

[Double]

Margin of the line
Example : 20

double

opportunityId

[String]

ID of the opportunity
Example : 5000123

opportunityType

OpportunityType

Details about the type
Remark : In add APIs (mainly PUT requests) opportunityType model is not expected, use the opportunityTypeId field instead.

opportunityTypeId

[String]

ID of the type
Example : 5000123

quantity

[Double]

Quantity of the line
Example : 500000

double

recurrenceDuration

[Double]

Duration of the recurrence
Example : 12

double

recurrenceType

RecurrenceType

Details about the recurrence Type
Example : UNIQUE

sortingNumber

[Double]

Sorting number of the line
Example : 0

double

3.237. OpportunityLineCriteria

Criteria of a Line of Opportunity

Field Name Required Type Description Format

opportunityId

ClauseString

Ident of the opportunity

readOption

OpportunityLineReadOption

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

[String]

Code of the opportunity type
Example : LOCATION

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the opportunity type
Example : Abonnement Location

recurrenceDuration

[BigDecimal]

Duration of the recurrence
Example : 12

recurrenceType

RecurrenceType

Details about the recurrence type
Example : UNIQUE

valorizationType

ValorizationType

Details about the valorization type
Example : DAY_NUMBER_AND_AMOUNT

3.241. OriginType

OriginType

Field Name Required Type Description Format

category

OriginTypeCategory

The category of the origin type.
Example : OTHERS

code

[String]

The code of the origin type.
Example : CODE

default

[Boolean]

Set as true to use this origin type by default.
Set as false by default

Example : true

endDate

[Date]

The end date of the origin type.
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the origin type.
Example : CODE

order

[Double]

The order (ranking) of this origin type
Example : 2

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

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

3.244. OtherThirdParty

Other third-party

Field Name Required Type Description Format

address

Address

The address of the other third-party.

branch

[String]

The branch office of the other third-party.
Example : Agency 1

classification

[String]

Classification of the other third-party.
Example : STD

code

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

comment

[String]

All comment
Example : Lorem ipsum

documentNumber

[String]

The number of the document related.
Example : 1203PL

id

[String]

Id in database
Example : 5000123

legalName

[String]

Legal name of the other third-party.
Example : LAPO

legalName2

[String]

Legal name 2 of the other third-party.
Example : LAPO

monitor

EmployeeBase

The employee who monitors this other third-party.
Remark : In add APIs (mainly PUT requests) monitor model is not expected, use the monitorId field instead.

monitorId

[String]

Id of the monitor
Example : 5000123

name

X

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

sector

[String]

The business sector of the other third-party.
Example : Automotive

siren

[String]

SIREN number
Example : 362 521 879

siret

[String]

SIRET number
Example : 362 521 879 00034

siteCode

[String]

The third-party site code
Example : Site 1

type

OtherThirdPartyTypeBase

The type of the other third-party.
Remark : In add APIs (mainly PUT requests) type model is not expected, use the typeId field instead.

typeId

[String]

Id of the type of the other third-party.
Example : 5000123

3.245. OtherThirdPartyCriteria

Criteria used on Other Third-Party when doing an Other Third-Party Search

Field Name Required Type Description Format

branch

ClauseString

The branch office of the other third-party

id

ClauseString

Id of the other third-party

monitorId

ClauseString

Id of the monitor

name

ClauseString

Name of the other third-party

readOption

OtherThirdPartyReadOption

Options used to get additional information when doing an Other Third-Party Search

siren

ClauseString

SIREN number

siret

ClauseString

SIRET number

siteCode

ClauseString

The third-party site code

typeId

ClauseString

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

[String]

The code of the other third-party type
Example : AMOA

id

[String]

Id in database
Example : 5000123

name

X

[String]

The name of the other third-party type
Example : AMOA

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

[String]

A JSON-Pointer @see https://tools.ietf.org/html/rfc6901

op

X

[String]

The operation to be performed
Example : ADD

Enum: ADD, REMOVE, REPLACE, TEST, MOVE, COPY, AK_APPEND, ADD, REMOVE, REPLACE, TEST, MOVE, COPY, AK_APPEND

path

X

[String]

A JSON-Pointer @see https://tools.ietf.org/html/rfc6901

value

[Object]

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

[String]

Payment code
Example : 5 days End of month by bank transfer

day

[Double]

Day of the month on which the payment will be done
Example : 10

double

deadLine

[String]

Number of days to carry out the payment
Example : 5

term

[String]

Period of payment
Example : End of month

People Link

3.253. PeopleLinkCriteria

Criteria used on People Link when doing a People Link search

Field Name Required Type Description Format

defaultLink

ClauseBoolean

If true, the people link is the one set by default on the third party with the link

id

ClauseString

linkSourceId

ClauseString

Id of the people link relationship between the path third party and another third party

linkTargetId

ClauseString

Id of the people link relationship between a third party and the path third party

linkType

ClauseString

A link can be set as a Management Link or a Filiation Link

readOption

PeopleLinkReadOption

Options for retrieving extra information concerning the peopleLink

sourceThirdPartyId

ClauseString

Id of the third party linked

sourceThirdPartyType

ClauseString

Type of the source third party linked (PROSPECT, CUSTOMER, SUPPLIER OR OTHER_THIRD_PARTY)

targetThirdPartyId

ClauseString

Id of the target third party with people links

targetThirdPartyType

ClauseString

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

[String]

The code for the type of People link.
Example : CODE

companyCode

[String]

The code of the company.
Example : AKSAS

description

[String]

The description for the type of People link.
Example : Loremp ipsum

id

[String]

Id in database
Example : 5000123

linkDirection

LinkDirectionEnum

A filation link type can be set with a link direction
Example : ASCENDING

static

[Boolean]

A link can be set as static if it is not intended to be modified
Example : true

type

PeopleLinkTypeEnum

A link can be set as a Management Link or a Filiation Link
Example : MANAGEMENT_LINK

3.256. PeopleLinkTypeCriteria

Criteria used on People Link Type when doing a Link Type search

Field Name Required Type Description Format

code

ClauseString

companyCode

ClauseString

id

ClauseString

type

ClauseString

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

[Date]

Smaller date of the period
Example : 2020-01-23T04:56:07.000+00:00

date-time

granularity

PeriodGranularity

To limit the granularity to a unit other than milliseconds, pass the units as the third parameter. DAY by default.
Example : YEAR

inclusivity

[String]

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

[Date]

Bigger date of the period
Example : 2020-01-23T04:56:07.000+00:00

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

PeriodicityCodeType

Periodicity of payment (0 &#8658; Unique (default); 1 &#8658; Annual; 2 &#8658; Bi-annual; 3 &#8658; Quarterly; 4 &#8658; Monthly)
Example : UNIQUE

duration

[Double]

Duration in month
Example : 3

double

id

[String]

Id in database
Example : 5000123

lineStartDate

[Date]

Start date of the line
Example : 2020-01-23T04:56:07Z

date-time

startDate

[Date]

Date by which the periodicity is starting
Example : 2020-01-23T04:56:07.000+00:00

date-time

tacitAgrement

[Boolean]

Returns true if the checkbox 'tacit renewal' is checked
Example : true

term

[Boolean]

Returns true if not due, false if due
Example : true

3.261. PeriodicityCodeType

Type of tag

Type : enum (UNIQUE, ANNUAL, BIANNUAL, QUARTERLY, MONTHLY)

3.262. PhaseBase

Phase

Field Name Required Type Description Format

code

[String]

Code of a phase
Note: The phase code cannot be changed once it has been created.

Example : PHS_1

id

[String]

Id in database
Example : 5000123

name

[String]

Name of a phase
Example : Phase 1

order

[Integer]

Order number of the project
Example : 1

int32

project

ProjectBase

Details about the corresponding project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the corresponding project (i.e. Code of the project)
Example : PRJ_1

3.263. PhaseState

State of a phase

Field Name Required Type Description Format

code

[String]

The code of the phase state
Example : PRO

companyId

[String]

ID of the company
Example : 5000123

default

[Boolean]

Set as true to use this phase state by default. Set as false by default
Example : false

id

[String]

ID of the phase state

name

[String]

The name of the phase state
Example : Production

3.264. PhaseStateCriteria

Criteria used on phase state when doing a phase state search

Field Name Required Type Description Format

code

ClauseString

companyId

ClauseString

id

ClauseString

name

ClauseString

3.265. Pipe

Pipe

Field Name Required Type Description Format

code

[String]

Code of the pipe
Example : BIZZ

company

Company

Details about the company
Remark : In add APIs (mainly PUT requests) company model is not expected, use the companyId field instead.

companyId

[String]

ID of the company
Example : 5000123

defaultStageId

[String]

ID of the default stage
Example : 5000123

endDate

[Date]

The end date of the template pipe
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the pipe
Example : Business

right

DmfBase

Details on the right to use this pipe.
A right in akuiteo, D - Functional Area, M - Module, F - Feature

stages

List of Stage

Stages of the pipe

templatePipeId

[String]

ID of the template pipe.
Example : 5000123

useRightAsDefault

[Boolean]

Set true to use the right defined in this pipe by default.
Set as false by default.

Example : true

3.266. PipeBase

Pipe base

Field Name Required Type Description Format

code

[String]

Code of the pipe
Example : BIZZ

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the pipe
Example : Business

3.267. PipeCriteria

Criteria when doing a pipe search

Field Name Required Type Description Format

code

ClauseString

Code of the pipe

companyId

ClauseString

ID of the company

defaultStageId

ClauseString

ID of the default stage

id

ClauseString

ID of the pipe

name

ClauseString

The name of the pipe

readOption

PipeReadOption

Options for retrieving extra information concerning the pipe

tag

ClauseString

You can fill in the code or name of the pipe in this field

templatePipeId

ClauseString

ID of the template pipe

validity

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

[Date]

Precise date to be updated.
If provided, this date will automatically be set on the object.
To use this field, type must be set to EXACT_DATE.

Example : 2020-01-23T04:56:07Z

date-time

period

PostponePeriod

Period shift information for postponing the date. To use this field, type must be set to SHIFT_BY_PERIOD.

type

X

PostponeType

Defines how the date is postponed: either by exact date, period shift, or reset.
EXACT_DATE allows postponing to a specific date.
SHIFT_BY_PERIOD allows postponing using a defined period shift.
RESET_DATE allows clearing the date.
If this field is set to RESET_DATE, the values in postponeToExactDate and postponeByPeriod are ignored, if provided, and the line date will be cleared.

Example : EXACT_DATE

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

[Integer]

Number of times the period should be shifted.
Example : 4

shiftPeriod

ShiftPeriod

Time unit for shifting the period.
Example : YEAR

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

[String]

The code of the pricing method
Example : AKAS

id

[String]

The ID in database of the pricing methods
Example : 5000123

name

[String]

The name given to the pricing method
Example : TARIFS AKAS

3.274. ProbabilityLevel

Probability of the level being accepted.

Type : enum (0, 1, 2, 3, 4, 9)

3.275. ProductionInformations

Production informations

Field Name Required Type Description Format

billingTargetDay

[Integer]

Billing target day of the month for the production to be billed. Empty if the billing mode is not production to be billed.
Example : 5

int32

defaultDisplay

[Boolean]

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.
Example : false

estimatedDuration

[Integer]

The production estimated duration in minutes. Empty if the billing mode is not production to be billed.
Example : 240

int32

linkedToAdvancePayments

[Boolean]

Returns true if the production is linked to advance payments. Set as 'false' by default.
Example : true

targetDay

[Integer]

Target day of the month for the production. Empty if the billing mode is not production to be billed.
Example : 22

int32

team

ProductionTeamBase

Details about the production team.
Remark : In add APIs (mainly PUT requests) team model is not expected, use the teamId field instead.

teamId

[String]

ID of the production team
Example : 5000123

3.276. ProductionTeamBase

Production team base

Field Name Required Type Description Format

code

[String]

Code of the production team
Example : PRD

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the production team
Example : PROD

3.277. Profession

Details about the profession of the people

Field Name Required Type Description Format

code

[String]

Code of the Profession
Example : LYR

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the Profession
Example : Lawyer

3.278. ProfessionalCategory

Professional Category

Field Name Required Type Description Format

code

[String]

Code of the Professional Category
Example : CODE

companyId

[String]

ID of the company
Example : 5000123

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the Professional Category
Example : Name

ranking

[Integer]

The professional category ranking in the list
Example : 5

int32

3.279. ProjectBase

Project

Field Name Required Type Description Format

companyCode

[String]

Code of the company
Example : AKSAS

customer

CustomerBase

Details of the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

Id of the project's customer
To update this field,use the specific API : Update the customer's project

Example : 5000123

customerType

ProjectCustomerType

Customer type
Example : ALL_CUSTOMERS

endCustomer

CustomerBase

Details of the customer
Remark : In add APIs (mainly PUT requests) endCustomer model is not expected, use the endCustomerId field instead.

endCustomerId

[String]

Id of the project's end customer
Example : 5000123

id

[String]

Id in database
Example : 5000123

internal

[Boolean]

If the project is internal or not
Example : false

leave

[Boolean]

Return true if the project is a leave project
Example : false

leaveType

ProjectLeaveType

Details about leave type
Example : WITH_REQUEST

name

[String]

Name of a project
Example : My project

3.280. ProjectCommon

Shared information about projects, across domains.

Field Name Required Type Description Format

color

[String]

Color of the project (hexadecimal code)

companyCode

[String]

Code of the company
Example : AKSAS

customer

CustomerBase

Details of the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

Id of the project's customer
To update this field,use the specific API : Update the customer's project

Example : 5000123

customerType

ProjectCustomerType

Customer type
Example : ALL_CUSTOMERS

endCustomer

CustomerBase

Details of the customer
Remark : In add APIs (mainly PUT requests) endCustomer model is not expected, use the endCustomerId field instead.

endCustomerId

[String]

Id of the project's end customer
Example : 5000123

id

[String]

Id in database
Example : 5000123

internal

[Boolean]

If the project is internal or not
Example : false

leave

[Boolean]

Return true if the project is a leave project
Example : false

leaveType

ProjectLeaveType

Details about leave type
Example : WITH_REQUEST

name

[String]

Name of a project
Example : My project

projectEnd (Deprecated)

[Date]

End date of a project
Example : 2020-01-23T04:56:07.000+00:00
Deprecated : Use project/productionEnd/actualDate instead

date-time

projectStart (Deprecated)

[Date]

Start date of a project
Example : 2020-01-23T04:56:07.000+00:00
Deprecated : Use project/productionStart/actualDate instead

date-time

projectState

ProjectState

State of the project
Remark : In add APIs (mainly PUT requests) projectState model is not expected, use the projectStateId field instead.

projectStateId

[String]

Id of the state of the project
Example : 5000123

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

[String]

The code of the project group.
Example : PARC

description

[String]

Description of the project group.
Example : Lorem ipsum

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the project group.
Example : PARC

3.284. ProjectLeaveType

Type of Project leave

Type : enum (WITH_REQUEST, CALENDAR, NO_TIMESHEETS)

3.285. ProjectState

State of a project

Field Name Required Type Description Format

code

[String]

The code of the project state
Example : PRO

companyCode (Deprecated)

[String]

Code of the company
Example : AKSAS
Deprecated : Use companyId instead

companyId

[String]

ID of the company
Example : 5000123

id

[String]

ID of the project state

name

[String]

The name of the project state
Example : Production

3.286. ProjectStateCriteria

Criteria used on project state when doing a project state search

Field Name Required Type Description Format

activeModule

ActiveModule

Example : EXPENSE_REPORTS

code

ClauseString

companyId

ClauseString

id

ClauseString

name

ClauseString

tag

ClauseString

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)

[String]

Code of the task
Deprecated : unused

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the task
Example : Team building

3.288. ProjectTaskCommon

The Project task common

Field Name Required Type Description Format

code (Deprecated)

[String]

Code of the task
Deprecated : unused

customer

CustomerBase

Details about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

ID of the customer
Example : 5000123

description

[String]

Description of the task

endDate

[Date]

End date of the task
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the task
Example : Team building

order

[Integer]

Order number of the task
Example : 2

int32

phase

PhaseBase

Details about the phase of the project.
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001

startDate

[Date]

Start date of the task
Example : 2020-01-23T04:56:07.000+00:00

date-time

subPhase

SubPhaseBase

Details about the sub-phase of the project
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122

3.289. ProjectTaskType

The parameters of different type of project task

Field Name Required Type Description Format

byDefault

[Boolean]

Set as true to use this type of task by default when adding a new task.
Example : false

code

[String]

The code to give to this project task type
Example : R&D

companyId

[String]

ID of the company
Example : 5000123

id

[String]

ID of the project task type

label

[String]

The project task type name / label
Example : Tâche R&D

rankNumber

[Integer]

The project task type ranking in the list
Example : 5

type

TaskBillingType

Example : TIME_BASED

3.290. ProjectType

Project type

Type : enum (EXTERNAL, INTERNAL, ALL)

3.291. PublishArguments

Required arguments to publish a document.

Field Name Required Type Description Format

extension

[String]

Document type
Example : .pdf

parameters

List of PublishTemplateParameter

Details about the template parameters

saveDocument

[Boolean]

Return true if the generated document is linked to the business document.
Example : true

template

PublishTemplate

Details about the template

3.292. PublishContextBase

Context for publication, destined for use by specific API

Field Name Required Type Description Format

contextType

[String]

Context of the publish
Example : Timesheet entries

displayOptions

Map of [string]

Options for data display
Example : Weekend, Scheduled rate, Validated, etc…​

filters

Map of [array]

Filter for data selection discriminating by object IDs grouped by object type
Example : Entity, Services, Employee, etc…​

3.293. PublishTemplate

Details about the template used to publish.

Field Name Required Type Description Format

code

[String]

The template code
Example : MODELE_EDITION_001

defaultTemplate

[Boolean]

Return true if it's the default's template
Example : true

endDate

[Date]

End of validity of the template
Example : 2020-01-23T04:56:07.000+00:00

date-time

extensions

List of [string]

Extension types available for the document
Example : .pdf, .docx

id

[String]

Id in database
Example : 5000123

interactive

[Boolean]

Return true if the model needs any parameters to be generated
Example : true

name

[String]

The template name
Example : Edition model for my documents

order

[Integer]

Order number
Example : 1

int32

path

[String]

Path where you can find the template.
Example : C://MyDoc/Template/modele_edition_001

publishType

PublishType

Publish type
Example : OPPORTUNITY

type

PublishTemplateType

Details about the template type

3.294. PublishTemplateParameter

Parameters of a Publish template.

Field Name Required Type Description Format

controlType

PublishTemplateParameterType

Details about the type of the parameter
Example : TEXT_BOX

groupName

[String]

Name of the parameter group
Example : text_box

labelText

[String]

Label of the parameter
Example : Detail BL

nameField

[String]

Name of the parameter
Example : DetailBL

nameFieldNext

[String]

Name of the next parameter
Example : DetailCheckbox

pattern

[String]

Pattern of the parameter
Example : cl

required

[Boolean]

Return true if the paramater is required
Example : true

selectionList

List of PublishTemplateParameterChoice

Details of each value of a LIST_BOX parameter

value

[Object]

Value of the parameter
Example : checked

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

[String]

The label
Example : Bank transfer

value

[String]

The value
Example : BT

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

[String]

Code of the template type
Example : TEMP01

modelDescription

[String]

Description of the model
Example : Lorem Ipsum

modelId

[String]

ID of the model
Example : 5000123

name

[String]

Name of the template type
Example : Template one

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

[String]

Document ID
Example : 112302

isDocument

[Boolean]

Return true if the document is available in Akuiteo
Example : true

token

[String]

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

[String]

ID of the company
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

contactId

[String]

The ID of the contact
Example : 5000023

email

[String]

The email of the contact recipient
Example : email@email.com
Remark : This property is read-only and provides current data without allowing modifications.

firstName

[String]

The first name of the contact recipient
Example : John
Remark : This property is read-only and provides current data without allowing modifications.

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the contact recipient .
Example : Doe
Remark : This property is read-only and provides current data without allowing modifications.

title

[String]

Civility of the contact recipient
Example : Mr
Remark : This property is read-only and provides current data without allowing modifications.

type

RecipientContactType

Example : IN_COPY

3.301. RecipientContactType

Type of recipient

Type : enum (IN_COPY, RECIPIENT)

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

[Double]

After-tax amount in the company currency, calculated automatically, considering any recurrence
Example : 1440

double

afterTaxAmountCurrency

[Double]

After-tax amount in the specified currency, calculated automatically, considering any recurrence
Example : 1440

double

preTaxAmount

[Double]

Pre-tax amount in the company currency, calculated automatically, considering any recurrence
Example : 1200

double

preTaxAmountCurrency

[Double]

Pre-tax amount in the specified currency, calculated automatically, considering any recurrence
Example : 1200

double

vatAmount

[Double]

VAT amount expressed in the company currency
Example : 240

double

vatAmountCurrency

[Double]

VAT amount expressed in the specified currency
Example : 240

double

3.304. Region

Region

Field Name Required Type Description Format

code

[String]

Code of the region
Example : 84

companyCode

[String]

The code of the company linked to the region
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

country

Country

The country where the region is located
Remark : In add APIs (mainly PUT requests) country model is not expected, use the countryId field instead.

countryId

[String]

Id of the country where the region is located
Example : 5000123

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the region
Example : Region 1

3.305. Relationship

Relationship between an event and a third-party

Field Name Required Type Description Format

customerId

[String]

ID of the customer of the relationship
Example : 5000123

detail

[String]

Detail of the relationship
Example : Lorem ipsum

email

[String]

Email of the relationship
Example : lorem@ipsum.com

eventId

[String]

ID of the event of the relationship
Example : 5000123

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the relationship
Example : Lorem ipsum

parentThirdPartyId

[String]

ID of the parent of the third party linked in this relationship.
For example, for a supplier site, this field is set with a supplier ID, and for a supplier, it is the same supplier ID.
The same applies to customer site and customer.
Some objects, such as employees and contacts, have no parent ID.

Example : 5000123

phone

[String]

Phone of the relationship
Example : 101010101

thirdPartyId

[String]

ID of the third party linked in this relationship
Example : 5000123

type

RelationshipType

Detail about the type of the relationship
Example : CUSTOMER

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

[String]

Id in database
Example : 5000123

thirdPartyId

[String]

ID of the third party linked in this relationship
Example : 5000123

type

RelationshipType

Detail about the type of the relationship
Example : CUSTOMER

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.309. RepeatingYear

Repeating Year

Type : enum (YES, NO)

3.310. ReplyEvent

Reply of an Event

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Reply state of the event
Example : CONFIRMEE

3.311. ReplyEventCriteria

Criteria used on Event Service when doing a Find replies of events

Field Name Required Type Description Format

id

ClauseString

Ident of the reply event

name

ClauseString

Name of the reply event

3.312. SEPA

Details SEPA banking information

Field Name Required Type Description Format

bankDetails

BankDetails

Details about the bank

bic

BIC

Details about the BIC

iban

IBAN

Details about the IBAN

3.313. SalesAddressBook

SalesAddressBook

Field Name Required Type Description Format

contactId

[String]

ID of the contact
Example : 5000123

customerId

[String]

ID of the customer
Example : 5000123

gone

[Boolean]

True if the customer contact is gone
Example : true

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the sales adresse book
Example : Lorem ipsum

out

[Boolean]

True if the customer is closed or customer contact is closed
Example : true

siteId

[String]

ID of the site
Example : 5000123

type

SalesAddressBookType

Type of the sales adresse book
Example : CUSTOMER

3.314. SalesAddressBookCriteria

Criteria used when doing a SalesAddressBook search

Field Name Required Type Description Format

searchType

[String]

The search type of the address book
Example : NAME

Enum: NAME, PHONE_OR_EMAIL, NAME, PHONE_OR_EMAIL

tag

[String]

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

ActionCodeBase

Details about the action verb
Remark : In add APIs (mainly PUT requests) actionCode model is not expected, use the actionCodeId field instead.

actionCodeId

[String]

ID of the action code
Example : 130012

changeTracking

ChangeTracking

Date and user in case of creation and modification

comment

[String]

Comment of the calendar event

customer

CustomerBase

Details about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

ID of the customer
Example : 5000123

date

[Date]

Date of the calendar event
Example : 2020-01-23T04:56:07.000+00:00

date-time

description

[String]

Description of the schedule
Example : Lorem ipsum

done

[Boolean]

Return True if the schedule is done
Example : false

duration

[Double]

Duration of the calendar event
Example : 2

double

durations

Durations

Duration in different units

employee

EmployeeBase

Details about the employee
Remark : In add APIs (mainly PUT requests) employee model is not expected, use the employeeId field instead.

employeeId

[String]

ID of the employee
Example : 5000123

guid

[String]

Global identifier of the calendar event (for mobile version only)

id

[String]

ID of the calendar event

location

[String]

Location of the calendar event
Example : Paris

phase

PhaseBase

Details about the phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

Details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_1

projectTask

ProjectTaskBase

Details about the task
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

ID of the project
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 5000123

taskId

[String]

Helpdesk's task ident
Example : 5000123

type

[String]

Type of the calendar event
Example : SCHEDULE

unit

UnitDuration

Details about the unit of duration
Example : MINUTE

validated

[Boolean]

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

ControlBehavior

Details about the control behavior linked to the field

searchFieldInformation

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

[String]

The section in which the search field will be displayed.
Example : Informations du devis

categoryTab

[String]

The tab in which the search field will be displayed.
Example : Critères principaux

code

[String]

The code of the search field
Example : CODE_ETAT

fieldOrder

[Integer]

Order number of the field
Example : 1

int32

group

[String]

Membership group of the field
Example : 10-DMF

id

[String]

The Id of the search field

name

[String]

The name of the search field
Example : Code état

primary

[Boolean]

True when the search field is primary and will be displayed in the main search area
Example : true

searchType

SearchFieldType

The type of the search field
Example : DROPDOWN_LIST

secondary

[Boolean]

True when the search field is secondary and will be displayed in the secondary search area.
Example : true

sectionOrder

[Integer]

Order number of the section
Example : 1

int32

tabOrder

[Integer]

Order number of the tab
Example : 1

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

[String]

Code of the Sector
Example : CODE

companyId

[String]

ID of the company
Example : 5000123

endDate

[Date]

The end date of the Sector.
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the Sector
Example : Name

ranking

[Integer]

The sector ranking in the list
Example : 5

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

[String]

Mode of fields selection. If INCLUDE or EXCLUDE without fields all fields will be included
Example : INCLUDE

Enum: INCLUDE, EXCLUDE, INCLUDE, EXCLUDE

3.323. Service

Service

Field Name Required Type Description Format

code

[String]

Code of the service
Example : PS

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the service
Example : Professional services

3.324. ServiceProviderProject

Provider Project Information

Field Name Required Type Description Format

companyCode

[String]

The company code.
Example : AKSAS

division

Division

Division
Remark : In add APIs (mainly PUT requests) division model is not expected, use the divisionId field instead.

divisionId

[String]

Id of the division
Example : 5000123

entity

Entity

Entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityId

[String]

Id of the entity
Example : 5000123

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

[String]

Siret number
Example : 362 521 879 00034

VATNumber (Deprecated)

[String]

VAT number of the site
Deprecated : Use taxInformation instead

address

Address

Details about the address of the customer site.

addressId (Deprecated)

[String]

ID of the address
Deprecated : this field is unused and will soon be removed.

chorusInformation

SiteChorusInformation

Details about Chorus information

code

[String]

Code of the customer site

contacts

List of Contact

List of the contacts linked to the customer site

customer (Deprecated)

CustomerBase

Details about the customer
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId (Deprecated)

[String]

Code of the associated customer
Example : CUST_001
Deprecated : This field is deprecated and will soon be moved to Site. You can continue to use this field.

email

[String]

The email of the customer site
To update this field, see the email field in the address field.

Example : jean@email.com
Remark : This property is read-only and provides current data without allowing modifications.

externalReference

[String]

The external customer site identification
Example : ABC123

fax

[String]

Fax of the site
Example : 101010101
Remark : This property is read-only and provides current data without allowing modifications.

fullName

[String]

Full name of the Site
If this field is omitted or null, it will automatically be set to the value of the 'name' field.

Example : Lorem ipsum

fullName2

[String]

Full name 2 of the site (extension of the full name and matching the legal name 2)
Example : SAAS

id

[String]

Id in database
Example : 5000123

main

[Boolean]

Set as “true” if this is the customer's main site.
To update update this field, use specific api: Set this site as main site of the customer

Example : true

manager

EmployeeBase

Details about the manager.
Remark : In add APIs (mainly PUT requests) manager model is not expected, use the managerId field instead.

managerId

[String]

The ID of the manager.
Example : 5000123

mobilePhone

[String]

To update this field, see the email field in the address field.
Remark : This property is read-only and provides current data without allowing modifications.

Example : 401010101
Remark : This property is read-only and provides current data without allowing modifications.

name

[String]

Name of the customer site
Example : Paris

notes

[String]

The notes about the customer site (comment)
Example : Loremp ipsum

phone

[String]

Phone of the Site
Example : 101010101
Remark : This property is read-only and provides current data without allowing modifications.

siteCode (Deprecated)

[String]

Code of the site
Deprecated : Use code instead

taxInformation

TaxInformation

Details about the tax information

useForBillingAddress

[Boolean]

Set as true to use this site's address as the customer's billing address.
Set as false by default.

Example : true

useForBillingAddressDefault

[Boolean]

Set as true to use this site's address as the customer's billing address by default.
Set as false by default.

Example : true

useForDeliveryAddress

[Boolean]

Set as true to use this site's address as the customer's delivery address.
Set as false by default.

Example : true

useForDeliveryAddressDefault

[Boolean]

Set as true to use this site's address as the customer's delivery address by default.
Set as false by default.

Example : true

useForDunningAddress

[Boolean]

Set as true to use this site's address as the customer's dunning address.
Set as false by default.

Example : true

useForDunningAddressDefault

[Boolean]

Set as true to use this site's address as the customer's dunning address by default
Set as false by default.

Example : true

useForOrderAddress

[Boolean]

Set as true to use this site's address as the customer's order address.
Set as false by default.

Example : true

useForOrderAddressDefault

[Boolean]

Set as true to use this site's address as the customer's order address by default
Set as false by default.

Example : true

useForSupportAddress

[Boolean]

Set as true to use this site's address as the customer's support address.
Set as false by default.

Example : true

useForSupportAddressDefault

[Boolean]

Set as true to use this site's address as the customer's support address by default.
Set as false by default.

Example : true

validUntil

[Date]

The end date of validity
Example : 2020-01-23T04:56:07Z

date-time

webSite

[String]

Web Site of the site
Example : www.example.com
Remark : This property is read-only and provides current data without allowing modifications.

3.327. SiteChorusInformation

Site Chorus Information

Field Name Required Type Description Format

accountingJournalId

[String]

ID of the accounting journal.
Only journals of type BANK are allowed.

Example : 5000123

serviceCode

[String]

Code of Chorus service
Example : Z-FDJ-CA

serviceName

[String]

Name of Chorus service
Example : SCA

3.328. SiteCriteria

Criteria used on Customer Site when doing a Customer Site search

Field Name Required Type Description Format

code

ClauseString

customerId

ClauseString

id

ClauseString

name

ClauseString

readOption

SiteReadOption

Options for retrieving extra information concerning the site

siret

ClauseString

Siret number

useForBillingAddress

ClauseBoolean

If the site is meant for invoices or not

useForDeliveryAddress

ClauseBoolean

If the site is meant for deliveries or not

useForDunningAddress

ClauseBoolean

If the site is meant for dunning or not

useForOrderAddress

ClauseBoolean

If the site is meant for orders or not

useForSupportAddress

ClauseBoolean

If the site is meant for maintenance or not

validity

Validity

Details about the validity of the customer site

3.329. SiteMovement

Site movement

Field Name Required Type Description Format

from

ThirdPartySite

Third party movement from

to

ThirdPartySite

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

ChangeTracking

Creation and modification date and user

code

[String]

The code of the contact.
Example : CT2024

contactId

[String]

ID of the contact related to this contact
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

customerId (Deprecated)

[String]

ID of the customer related to this contact
Example : 5000123
Deprecated : Use thirdPartyRef instead

decisionMaker

[Boolean]

True if decision maker
Example : true

email

[String]

The email of the contact on customer’s site.
Example : jean@email.fr

emailAddressNotKnown

[Boolean]

Set as true if the email address of the contact is not known.
Set as false by default.

Example : true

emailBlackListed

[Boolean]

Set to true if the contact has opted out of receiving emails.
Set as false by default.

Example : true

excludeFromUsersOnIssues

[Boolean]

Exclude contact from user list on issues.
Example : true

exitDate

[Date]

Exit date of the contact
Example : 2020-01-23T04:56:07Z

date-time

fax

[String]

Fax number of the contact
Example : 418 643 3210

financialContact

[Boolean]

True if financial contact
Example : true

firstName

[String]

The first name of the contact.
Example : Phillipe

helpdeskBlacklisted

[Boolean]

True if the Contact is blacklisted by the helpdesk
Set as false by default.

Example : true

helpdeskContact

[Boolean]

Set as true if the Contact is a help desk contact.
Set as false by default.

Example : true

helpdeskMainContact

[Boolean]

Set as true if the Contact is the help desk main contact.
Set as false by default.

Example : true

helpdeskVIPContact

[Boolean]

Set as true if the Contact is a help VIP contact.
Set as false by default.

Example : true

hiddenOnCRM

[Boolean]

Set as true if this contact should be hidden on CRM.
Example : true

id

[String]

Id in database
Example : 5000123

intern

[Boolean]

Set as true if the Contact is an intern.
Set as false by default.

Example : true

label

[String]

Label (also known as Title) of the contact
Example : Manager

mainContact

[Boolean]

True if main contact
Example : true

mainSite

[Boolean]

True if this is the main site
Example : true

manager

ContactBase

Details about the manager.

managerId

[String]

Id of the manager
Example : 5000123

mobilePhone

[String]

Mobile phone number of the site related information
Example : 50001237890

name

[String]

The name of the contact.
This field is mandatory.

Example : Jean

notes

[String]

Notes related to this contact
Example : Text

phone

[String]

Phone number of the site related information
Example : 50001237890

phoneExtension

[String]

Extension of the phone number of the contact
Example : 606060606

position

[String]

Position (also known as Function) of the contact on customer’s site.
Example : Accountant

salesContact

[Boolean]

Set as true if the Contact is a sales contact.
Set as false by default.

Example : true

service

[String]

Service of the contact
Example : R&D

siteId

[String]

ID of the site
Example : 5000123

siteName

[String]

Name of the site
Example : Lyon

thirdPartyRef

ThirdPartyReference

Customer third party link

title

[String]

Title of the site Related Information
Example : Mr

trainingContact

[Boolean]

Set as true if the Contact is in training.
Set as false by default.

Example : true

workPhone

[String]

Work phone number of the contact
Example : 606060606

3.332. Skill

Skill of an employee

Field Name Required Type Description Format

code

[String]

Code of the skill
Example : ENG

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the skill
Example : English

typeCode

[String]

Code of the skill's type
Example : LANGUAGE

typeLabel

[String]

Label of the skill's type
Example : Language

3.333. SoldItem

Sold item

Field Name Required Type Description Format

accountSettings

ItemAccountingInfo

Accounting information for an item.

automaticTitle

[String]

Automatic title for a sold item, used for structuring and hierarchization of elements that utilize this sold item.
Example : IT PRODUCT

billingMode

BillingMode

defaut billing mode for the item
Example : TIME_BASED

category

Category

All details about the category of the product
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

The Id of the category
Example : 10024

comment

[String]

Comment on the product
Example : Lorem ipsum

companyCode

[String]

The company code
Example : AKSAS

customData

Map of CustomData

All custom data to update

entityCode

[String]

The entity code
Example : Lyon

family (Deprecated)

[String]

The category of the product
Example : FML-LICENCE
Deprecated : Use category instead

grouping

[String]

The grouping of the product
Example : LICENCE

id

[String]

Id in database
Example : 5000123

inventory

[Boolean]

Returns true if the product is in the inventory
Example : true

inventoryAndPackaging

InventoryAndPackaging

Details about Inventory and Packaging

name

[String]

Identification name
Example : Maintenance

productionEstimatedDuration

[Double]

Estimated duration in minutes
Example : 30

double

productionInformations

ProductionInformations

Details about productions informations

quantityPrecision

[Double]

Number of decimals for this item quantity
Example : 2

double

reference

[String]

The reference of the product
Example : ENGLISH

shortName

[String]

Abbreviated designation
Example : Maint

subCategory

SubCategoryItem

All details about the sub-category of the product
Remark : In add APIs (mainly PUT requests) subCategory model is not expected, use the subCategoryId field instead.

subCategoryId

[String]

The Id of the sub-category
Example : 11037

subFamily (Deprecated)

[String]

The sub-category of the product
Example : RECCURENT
Deprecated : Use subCategory instead

unitPricePrecision

[Double]

Number of decimals for this item unit price
Example : 3

double

3.334. SoldItemCriteria

Search criteria for sold items

Field Name Required Type Description Format

billingMode

ClauseString

Billing mode for the sold item

categoryId

ClauseString

The ID of the category

companyCode

ClauseString

Code of the company

customData

Map of Clause

The custom data (when present)

defaultDisplay

ClauseBoolean

Set as “True” to load only productions should be displayed by default. If not specified, all productions are loaded.

entityId

ClauseString

Ident of the entity of the sold item

grouping

ClauseString

Grouping of the sold item

id

ClauseString

Ident of the sold item

inventory

ClauseBoolean

Returns true if the product is in the inventory

linkedToAdvancePayments

ClauseBoolean

Set as True to return production linked to advance payments.

marketEndDate

ClauseDate

End-of-sale date for the sold item. Indicates when the product stopped being available for sale

name

ClauseString

Identification name

packagingType

ClauseString

The packaging type of the sold item

readOption

SoldItemReadOption

Options for retrieving extra information concerning the billing table

reference

ClauseString

Reference of the sold item

subCategoryId

ClauseString

The ID of the sub category

tag

ClauseString

You can fill in the reference or grouping of the tag in this field

teamId

ClauseString

The ID of the production team

validity

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

[String]

Name of the field
Example : number

order

SortType

Sort type. (ASC or DESC)
Example : ASC

3.337. SortType

Sort type for search

Type : enum (ASC, DESC)

3.338. Stage

Stage

Field Name Required Type Description Format

code

[String]

The code of the opportunity stage
Example : ANNULATION

color

[String]

The color of the opportunity stage
Example : #00FF00

default

[Boolean]

Set as true to use this stage by default.
Set as false by default

Example : true

endDate

[Date]

The end date of the stage
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

lockProbabilityLevel

[Boolean]

Set as true to impose the probability level entered for this stage
Set as false by default.

Example : true

name

[String]

Name of the opportunity stage
Example : Analysis

order

[Double]

The order (ranking) of this stage
Example : 2

double

probabilityLevel

ProbabilityLevel

The probability level.
Example : 0

status

StageStatus

Stage Status
Example : IN_PROGRESS

3.339. StageBase

Oppportunity Stage Base

Field Name Required Type Description Format

code

[String]

The code of the opportunity stage
Example : ANNULATION

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the opportunity stage
Example : Analysis

3.340. StageCriteria

Criteria used to search opportunity stages

Field Name Required Type Description Format

code

ClauseString

The code of the opportunity stage.

default

ClauseBoolean

Set to true to return the default stage.

endDate

ClauseDate

End date of the opportunity stage.

id

ClauseString

Id of the opportunity stage.

name

ClauseString

Name of the opportunity stage.

status

ClauseString

Status of the opportunity stage.

3.341. StageStatus

Stage Status

Type : enum (IN_PROGRESS, COOMPLETED, WON, LOST, DISCARD, OFF_TARGET)

3.342. StandardAction

Standard action for an event

Type : enum (INSERT, UPDATE, DELETE)

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

[String]

Code of the standard week
Example : DEFAULT

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the standard week
Example : Default week

3.344. StatusFilter

Filtering criteria based on resource status.

Field Name Required Type Description Format

dateOperator

ComparisonOperator

Defines how the reference date is used to filter resources based on whether they have the specified status or not.
If set to BEFORE, the filter retrieves all resources having or not the specified status before the reference date.
If set to AFTER, it retrieves resources having or not the status after the reference date. BEFORE_EQUAL includes resources having or not the status on or before the reference date, while AFTER_EQUAL includes those having it on or after the reference date.
EQUAL retrieves only the resources having or not the status exactly on the reference date.
If this field is not provided, the default comparison operator is BEFORE_EQUAL with the reference date.
If no reference date is provided, the comparison will use BEFORE_EQUAL with the current date.

Example : BEFORE

isActive

[Boolean]

Indicates whether the resource status is active or inactive.
Example : true

referenceDate

[Date]

The reference date to check the status of the resource. If not provided, the current date is used by default.
Example : 2029-01-23T04:56:07Z

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

[String]

Value
Example : true

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

Category

Details about the category
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

The Id of the category
Example : 500143

code

[String]

The code of the sub-category
Example : LANG

company

Company

Details about the company
Remark : In add APIs (mainly PUT requests) company model is not expected, use the companyId field instead.

companyCode (Deprecated)

[String]

The code of the company
Example : AKSAS
Deprecated : Use companyId instead

companyId

[String]

ID of the company
Example : 5000123

endDate

[date]

End date for using the sub-category
Example : 2020-12-25

date

grouping

[String]

Grouping field for sub-category

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the sub-category
Example : Language

ranking

[Integer]

Sub-category ranking in help lists

int32

type

CategoryType

Type of the category.
Example : SALES_ITEM

3.348. SubCategoryCriteria

Criteria used on sub-category when doing a sub-category search

Field Name Required Type Description Format

categoryId

ClauseString

Category's ident of the sub-category

code

ClauseString

Code of the sub-category

companyId

ClauseString

Company of the sub-category

endDate

ClauseDate

End date of validity for the sub-category

grouping

ClauseString

Grouping field of the sub-category

id

ClauseString

Ident of the sub-category

name

ClauseString

Name of the sub-category

nature

ClauseString

Nature of the sub-category

readOption

SubCategoryReadOption

Options for retrieving extra information concerning the sub-category

tag

ClauseString

You can fill in the code or name of the sub-category in this field

type

ClauseString

Type of the sub-category

validity

Validity

Details about the validity of the sub-category

3.349. SubCategoryItem

Sub category of an item

Field Name Required Type Description Format

category

Category

Details about the category
Remark : In add APIs (mainly PUT requests) category model is not expected, use the categoryId field instead.

categoryId

[String]

The Id of the category
Example : 500143

code

[String]

The code of the sub-category
Example : LANG

company

Company

Details about the company
Remark : In add APIs (mainly PUT requests) company model is not expected, use the companyId field instead.

companyCode (Deprecated)

[String]

The code of the company
Example : AKSAS
Deprecated : Use companyId instead

companyId

[String]

ID of the company
Example : 5000123

endDate

[date]

End date for using the sub-category
Example : 2020-12-25

date

grouping

[String]

Grouping field for sub-category

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the sub-category
Example : Language

ranking

[Integer]

Sub-category ranking in help lists

int32

subCategoryType

SubCategoryItemType

Type of the purchased item sub-category
Example : PRESTATION

type

CategoryType

Type of the category.
Example : SALES_ITEM

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

ClauseString

The Id of the category

code

ClauseString

The code of the sub-category item

companyId

ClauseString

The Id of the company

endDate

ClauseDate

End date of validity for the sub-category item

grouping

ClauseString

Grouping field for sub-category item

id

ClauseString

The Id of the sub-category item

name

ClauseString

Name of the sub-category item

nature (Deprecated)

ClauseString

Nature of the sub-category item
Deprecated : Use subCategoryType instead

readOption

SubCategoryItemReadOption

Options for retrieving extra information concerning the sub-category of an item

subCategoryType

ClauseString

Type of the purchased item sub-category item

tag

ClauseString

You can fill in the code or name of the sub-category item in this field

type

ClauseString

Type of the sub-category item.

validity

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

[String]

Code of a sub-phase
Example : SB_1

id

[String]

Id in database
Example : 5000123

name

[String]

Name of a sub-phase
Example : Sub Phase 1

order

[Integer]

Order number of the sub-phase
Example : 1

int32

phase

PhaseBase

Details about the corresponding phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the corresponding phase
Example : 5000123

3.356. SubPhaseState

State of a sub-phase

Field Name Required Type Description Format

code

[String]

The code of the sub-phase state
Example : PRO

companyId

[String]

ID of the company
Example : 5000123

id

[String]

ID of the sub phase state

name

[String]

The name of the sub-phase state
Example : Production

3.357. SubPhaseStateCriteria

Criteria used on sub-phase state when doing a sub-phase state search

Field Name Required Type Description Format

code

ClauseString

companyId

ClauseString

id

ClauseString

name

ClauseString

3.358. SubledgerAccountBase

Subledger account (ident example AKSAS22106800)

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Subledger account label
Example : Customer name

3.359. SubledgerAccountCommon

Subledger account

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Subledger account label
Example : Customer name

number

[String]

Subledger account number

Example : C2181

3.360. Subscription

Subscription to listen events using SSE

Field Name Required Type Description Format

excludeMyOwnEvents

[Boolean]

Set as true to exclude the event of which I am the author.
Set as false by default.

Example : true

token

[String]

The token code allocated to the susbscription.
Example : ciOiJIUzI1NiIsInR5cCI6IkpXVCJ9

topic

Topic

Topic to listen events

3.361. SupplierBase

Suppliers

Field Name Required Type Description Format

code

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

3.362. SupplierRelatedInformation

Supplier Related Information

Field Name Required Type Description Format

changeTracking

ChangeTracking

Creation and modification date and user

companyId

[String]

ID of the company
Example : 5000123

contactId

[String]

ID of the contact related to this supplier
Example : 5000123

id

[String]

Id in database
Example : 5000123

noLongerWorkForThisCompany

[Boolean]

Set as 'True' if the Contact no longer works for the company
Example : true

supplier

SupplierBase

Details about the supplier

supplierId

[String]

ID of the supplier
Example : 5000123

3.363. SupplierSiteBase

Supplier Site Base (Site Fournisseur)

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the supplier site

supplierId (Deprecated)

[String]

Warning : The supplier ID cannot be changed once the supplier site has been created. Any modification will not be taken into account.

Deprecated : This field is deprecated and will soon be moved to supplierSite. You can continue to use this field.

3.364. SupplierSiteRelatedInformation

Supllier site related information

Field Name Required Type Description Format

changeTracking

ChangeTracking

Creation and modification date and user

code

[String]

The code of the contact.
Example : CT2024

contactId

[String]

ID of the contact related to the supplier
Example : 5000123

decisionMaker

[Boolean]

Set as 'True' if the contact is a decision maker
Example : true

email

[String]

Email of the contact
Example : contact@email.com

emailAddressNotKnown

[Boolean]

The Email address of the contact is not known
Example : true

emailBlackListed

[Boolean]

The contact doesn't want to be contacted by mail
Example : true

exitDate

[Date]

Exit date of the contact
Example : 2020-01-23T04:56:07Z

date-time

fax

[String]

Fax number of the contact
Example : 101010101

financialContact

[Boolean]

Set as 'True' if financial contact
Example : true

firstName

[String]

The first name of the contact.
Example : Phillipe

helpdeskContact

[Boolean]

Set as 'True' if the Contact is a help desk contact
Example : true

helpdeskMainContact

[Boolean]

Set as 'True' if the Contact is the help desk main contact
Example : true

id

[String]

Id in database
Example : 5000123

label

[String]

Label (also known as Title) of the contact
Example : Example

mainContact

[Boolean]

Set as 'True' if main contact
Example : true

mainSite

[Boolean]

Set as 'True' if this is the main site
Example : true

mobilePhone

[String]

Mobile phone number of the site related information
Example : 123456789

name

[String]

The name of the contact.
This field is mandatory.

Example : Jean

notes

[String]

Notes related to this contact
Example : comment

phone

[String]

Phone number of the site related information
Example : 123456789

phoneExtension

[String]

Extension of the phone number of the contact
Example : 33

position

[String]

Position (also known as function) of the site related information

salesContact

[Boolean]

Set as 'True' if the Contact is a sales contact
Example : true

service

[String]

Service of the contact
Example : Lorem ipsum

site

SupplierSiteBase

Details about the supplier site

siteId

[String]

ID of the site
Example : 5000123

supplierId

[String]

ID of the supplier
Example : 5000123

title

[String]

Title of the site related information
Example : Mrs

workPhone

[String]

Work phone number of the contact
Example : 123456789

3.365. SupplierType

Supplier type

Type : enum (INTERNAL, EXTERNAL, VIRTUAL)

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

[String]

Code of the tag
Example : ERR

color

[String]

Color of the tag
Example : #56b7c

comment

[String]

Comment of the tag
Example : Lorem ipsum

companyId

[String]

ID of the company
Example : 5000123

endDate

[Date]

End of validity of the tag
Example : 2020-01-23T04:56:07.000+00:00

date-time

icon

[String]

Icon of the tag
Example : fa fa-plus

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the tag
Example : ISSUE

type

TagType

Type of the tag
Example : ISSUE

3.368. TagCriteria

Criteria used when doing a tag search

Field Name Required Type Description Format

code

ClauseString

Code of the tag

companyId

ClauseString

Ident of the company

id

ClauseString

Ident of the tag

name

ClauseString

Name of the tag

tag

ClauseString

You can fill in the code or name of the tag in this field

type

ClauseString

Type of the tag

validity

Validity

Details about validity

3.369. TagLinked

Tag linked

Field Name Required Type Description Format

action

Action

Details about the action verb
Example : ADD

code

[String]

Code of the tag
Example : ERR

color

[String]

Color of the tag
Example : #56b7c

comment

[String]

Comment of the tag
Example : Lorem ipsum

companyId

[String]

ID of the company
Example : 5000123

endDate

[Date]

End of validity of the tag
Example : 2020-01-23T04:56:07.000+00:00

date-time

icon

[String]

Icon of the tag
Example : fa fa-plus

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the tag
Example : ISSUE

objectId

[String]

ID of the linked object
Example : 5000123

type

TagType

Type of the tag
Example : ISSUE

3.370. TagType

Type of tag

Type : enum (ISSUE, SCHEDULE, OPPORTUNITY)

3.371. TaskBase

Task base

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

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

[String]

Id in database
Example : 5000123

number

[Integer]

The number of the task.
Example : 10

int32

3.374. TaxInformation

Tax Information

Field Name Required Type Description Format

VATAreaId (Deprecated)

[String]

The Id of the VAT Area
Example : 500123
Deprecated : Use vatAreaId instead

VATNumber (Deprecated)

[String]

The number of the VAT rate
Example : 1
Deprecated : Use vatNumber instead

euExempt

[Boolean]

The 'euExempt' field indicates whether Intracommunity VAT exemption applies.
This field can only be updated if the third party is an intra-EU party, meaning the third party's country is within the EU, and the third party is not local (i.e., the third party's country is different from the current company's country).
Set as 'false' by default.

Example : true

exempt

[Boolean]

The 'exempt' field indicates whether there is VAT exemption.
Set to true if the third party is exempt from VAT. This field can only be updated if the third party is in the same country as the current company.
Set as 'false' by default.

Example : true

vatArea

VATAreaBase

Details about the VAT Area.
Remark : In add APIs (mainly PUT requests) vatArea model is not expected, use the vatAreaId field instead.

vatAreaId

[String]

The Id of the VAT Area
Example : 500123

vatNumber

[String]

The number of the VAT rate
Example : 1

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

Message

parameters

List of PublishTemplateParameter

Details about the template parameters

templateId

[String]

The publish template needed to generate and attach the report
Example : 255644

3.376. ThirdPartyBase

Third Party Base

Field Name Required Type Description Format

code

[String]

The code of the third party (customer, supplier, other third party).
This field cannot be updated once it has been created.

Example : CA122

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the third party (customer, supplier, other third party).
This field is mandatory.

Example : Akuiteo

3.377. ThirdPartyLinkType

Third Party Link Type

Field Name Required Type Description Format

code

[String]

The code of third party link type
Example : VARIOUS

company

Company

Details about the company
Remark : In add APIs (mainly PUT requests) company model is not expected, use the companyId field instead.

companyId

[String]

The Id of the company
Example : 5000666

endDate

[Date]

End date for third party link type. When the date is reached, the type can no longer be used.
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

ID in database
Example : 5000123

name

[String]

The name of third party link type
Example : Various

requiredSiren

[Boolean]

Set as 'true' to make SIREN entry mandatory for this type.
When this field is on 'true', and the 'thirdPartyLinkType' field is filled in on a customer or supplier, the 'SIREN number' field becomes mandatory on a customer or supplier.
Set as 'false' by default.

Example : false

3.378. ThirdPartyReference

Reference of a third party

Field Name Required Type Description Format

thirdPartyId

[String]

Id of the third party
Example : 5000123

thirdPartyType

[String]

Type of the third party
Example : Lorem ipsum

3.379. ThirdPartySite

A third party site

Field Name Required Type Description Format

siteId

[String]

Id of the site

thirdPartyRef

ThirdPartyReference

The reference of the third party (customer, prospect, supplier)

3.380. ThirdPartySiteInformation

Information about thirdParty and site

Field Name Required Type Description Format

customerRelatedInformation

CustomerRelatedInformation

Detail about the customer related information

siteRelatedInformation

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

[Date]

The actual or effective date.
Example : 2020-01-23T04:56:07.000+00:00

date-time

expectedDate

[Date]

The currently expected date.
Example : 2020-01-23T04:56:07.000+00:00

date-time

initialDate

[Date]

The initially defined date.
Example : 2020-01-23T04:56:07.000+00:00

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

ClauseDate

The actual or effective date.

expectedDate

ClauseDate

The currently expected date.

initialDate

ClauseDate

The initially defined date.

3.384. TimesheetEntryBase

TimesheetEntryBase

Field Name Required Type Description Format

actionCode

ActionCodeBase

Details about the action verb
Remark : In add APIs (mainly PUT requests) actionCode model is not expected, use the actionCodeId field instead.

actionCode2

ActionCode2

Details of the action code
Remark : In add APIs (mainly PUT requests) actionCode2 model is not expected, use the actionCode2Id field instead.

actionCode2Id

[String]

ID of the second action code
Example : 5000123

actionCodeId

[String]

ID of the action code
Example : 130012

approval

[String]

Approval of the timesheet entry
Example : BRUT

Enum: BRUT, CONTROLE, VALIDE, GRATUIT, NON_FACTURE, FACTURE, REFUSE, DISSOCIE, BRUT, CONTROLE, VALIDE, GRATUIT, NON_FACTURE, FACTURE, REFUSE, DISSOCIE

approvalLabel

[String]

Label of the approval
Example : Refused

changeTracking

ChangeTracking

Date and user in case of creation and modification

comment

[String]

Comment of the calendar event

completionDate

[Date]

Completion Date
Example : 2020-01-23T04:56:07.000+00:00

date-time

customer

CustomerBase

Details about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerId

[String]

ID of the customer
Example : 5000123

date

[Date]

Date of the calendar event
Example : 2020-01-23T04:56:07.000+00:00

date-time

duration

[Double]

Duration of the calendar event
Example : 2

double

durations

Durations

Duration in different units

employee

EmployeeBase

Details about the employee
Remark : In add APIs (mainly PUT requests) employee model is not expected, use the employeeId field instead.

employeeId

[String]

ID of the employee
Example : 5000123

guid

[String]

Global identifier of the calendar event (for mobile version only)

id

[String]

ID of the calendar event

location

[String]

Location of the calendar event
Example : Paris

phase

PhaseBase

Details about the phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

ID of the phase
Example : 5000123

project

ProjectBase

Details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_1

projectTask

ProjectTaskBase

Details about the task
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

ID of the project
Example : 5000123

subPhase

SubPhaseBase

Details about the sub-phase
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

ID of the sub-phase
Example : 5000123

taskId

[String]

Helpdesk's task ident
Example : 5000123

type

[String]

Type of the calendar event
Example : SCHEDULE

unit

UnitDuration

Details about the unit of duration
Example : MINUTE

validated

[Boolean]

Return True if the calendar event is validated

3.385. Title

Title / Marriage status

Field Name Required Type Description Format

code

[String]

Code of the title

companyId

[String]

ID of the company
Example : 5000123

id

[String]

Id of the title

name

[String]

Name of the title

order

[Integer]

Order number of the title
Example : 1

int32

titleType

TitleType

Type of the title
Example : UNKNOWN

3.386. TitleType

Type of title

Type : enum (UNKNOWN, NEUTRAL, MALE, FEMALE)

3.387. Topic

Topic to listen events

Field Name Required Type Description Format

action

[String]

The action verb (ADD / UPDATE / REMOVE).
This field is used to add, update or remove a topic from a resource that uses it.

Example : ADD

id

[String]

ID of the topic

type

EventType

Type of event.
Example : COMMAND_TASK

3.388. TransactionStatus

Transaction status for electronic signatures

Type : enum (IN_PROGRESS, CANCELED, EXPIRED, COMPLETED)

3.389. TypeEvent

Type of the Event

Type : enum (TACHE, RDV, NOTE)

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

[Double]

Unit price of an item
Example : 4

double

3.392. UserBase

User

Field Name Required Type Description Format

code

[String]

Code of the user
Example : TRI

firstName

[String]

First name of the user
Example : John

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the user
Example : Doe

3.393. UserCriteria

UserCriteria

Field Name Required Type Description Format

id

ClauseString

readOption

UserReadOption

Options for retrieving extra information concerning the user

tag

ClauseString

Code or Last Name or First Name of the User

3.394. UserProfileBase

User Profile Base

Field Name Required Type Description Format

code

[String]

Code of the user profile
Example : PROFIL_TECH

id

[String]

Id in database
Example : 5000123

name

[String]

Name of the user profile
Example : Profil tech

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

[String]

VAT code
Example : 7

companyCode

[String]

The company code
Example : AKSAS

endDate

[Date]

End date of the VAT
Example : 2020-01-23T04:56:07.000+00:00

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

Name
Example : VAT for capital asset

purchasingAccountNumber

[String]

General purchasing account number linked to the tax code

rate

[Double]

VAT rate in percentage

double

reduced

[Boolean]

Returns true if the rate is reduced
Example : true

salesAccountNumber

[String]

General sales account number linked to the tax code

startDate

[Date]

Start date of the VAT
Example : 2020-01-23T04:56:07.000+00:00

date-time

3.397. VATAreaBase

VAT Area Base

Field Name Required Type Description Format

code

[String]

The code of the VAT area
Example : AREA

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the VAT area
Example : Area

3.398. VATBase

VAT

Field Name Required Type Description Format

code

[String]

VAT code
Example : 7

id

[String]

Id in database
Example : 5000123

rate

[Double]

VAT rate in percentage

double

3.399. Validity

Validity criteria

Field Name Required Type Description Format

date

[Date]

Date of validity of the item
If the date retrieved is null, then the validity date is on the current day.

Example : 2020-01-23T04:56:07.000+00:00

date-time

type

ValidityType

Details about the type of validity.
Example : VALID

3.400. ValidityType

Type of validity

Type : enum (VALID, INVALID)

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

[String]

Comment
Example : Lorem ipnum

signatureDate

[Date]

Signature date of the opportunity
Example : 2020-01-23T04:56:07Z

date-time

stageId

[String]

The ID of the stage
It is only possible to set the stage with the status 'Won'

Example : 5000152

3.403. Year

Year (vintage) of the opportunity

Field Name Required Type Description Format

code

[String]

The code of the year (vintage).
Example : 2025

disabledDate

[Date]

Date of disability
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id in database
Example : 5000123

name

[String]

The name of the year (vintage).
Example : Text

previousYearId

[String]

Previous year (vintage) ID.
Example : 5000123

repeating

RepeatingYear

Set as true if the vintage is recurrent.
Set as false by default.

Example : YES

validityEndDate

[Date]

The end date of validity.
Example : 2020-01-23T04:56:07Z

date-time

3.404. YearCriteria

Criteria used to search Year (vintage)

Field Name Required Type Description Format

code

ClauseString

The code of the year (vintage)

companyId

ClauseString

ID of the company

disabledDate

ClauseDate

Date on which the year will become inactive

id

ClauseString

The ID of the year (vintage)

name

ClauseString

The name of the year (vintage)

previousYearId

ClauseString

Previous year (vintage) ID

validityEndDate

Validity

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