1. Introduction

The Sales domain enables you to manage quotations, orders, invoices, billing tables and time-based billing.

1.3. Tags

  • Base rate : Base rate

  • Customer rate : Customer rate

  • Deliveries : Deliveries

  • Packs : Packs

  • Production catalogs : Production catalogs

  • Productions to be billed : Productions to be billed

  • Quotation Expense Lines : Quotation Expense Lines

  • Quotations : Quotations

  • Sales Billing Tables : Billing Tables

  • Sales invoices : Invoices

  • Sales orders : Orders

  • Sales settings : Sales settings

  • Sales VAT amounts : VAT amounts

  • Sold items : Sold items

  • Time-based billing : Time-based Billing

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. Base Rate

2.1.1. Search base rates with search criteria

POST

/base-rates/search

Description

Search a list of base rates matching the search criteria

DMF required:
  • DMF A63304: Api Settings / Rate / Search

  • DMF 050804: Inventory / Pricing Management / Search

  • DMF 061605: Projects / Project Tasks / Project Task Type

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020302: Sales / Sales Orders / Modify

  • DMF 020702: Sales / Billing Schedules / Modify

  • DMF 020402: Sales / Deliveries / Modify

  • DMF 020502: Sales / Invoices / Modify

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, name, etc,…​) BaseRateCriteria

-

Content Type
  • application/json

Responses
Table 1. http response codes
Code Message Datatype

200

Base rates successfully loaded

List[BaseRate]

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

{
  "itemId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validity" : {
    "date" : "2000-01-23T04:56:07.000+00:00"
  },
  "readOption" : {
    "options" : [ "PRICING_METHOD", "PRICING_METHOD" ]
  }
}

2.2. Customer Rate

2.2.1. Search customer rates with search criteria

POST

/customer-rates/search

Description

Search a list of customer rates matching the search criteria

DMF required:
  • DMF A63304: Api Settings / Rate / Search

  • DMF 050804: Inventory / Pricing Management / Search

  • DMF 061605: Projects / Project Tasks / Project Task Type

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020302: Sales / Sales Orders / Modify

  • DMF 020702: Sales / Billing Schedules / Modify

  • DMF 020402: Sales / Deliveries / Modify

  • DMF 020502: Sales / Invoices / Modify

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, name, etc,…​) CustomerRateCriteria

-

Content Type
  • application/json

Responses
Table 2. http response codes
Code Message Datatype

200

Customer rates successfully loaded

List[CustomerRate]

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

{
  "itemId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validity" : {
    "date" : "2000-01-23T04:56:07.000+00:00"
  },
  "readOption" : {
    "options" : [ "PRICING_METHOD", "PRICING_METHOD" ]
  }
}

2.3. Deliveries

2.3.1. Add a delivery to an existing invoice.

POST

/deliveries/{delivery_id}/add-invoice

Description

Add a delivery to an existing invoice.
All delivery lines will be added to the existing invoice lines.
The delivery must not have the status BILLED or MARKED_AS_BILLED.
The billing date of the delivery will be automatically set to the invoice date.
The delivery status will be updated to BILLED.

DMF required:
  • DMF AB0416: Api Sales / Deliveries / Add Delivery To An Existing Invoice

  • DMF 020438: Sales / Deliveries / Add Delivery To Existing Invoice

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

add_invoice

Details of the invoice to be attached to the delivery InvoiceToDeliveryLink InvoiceToDeliveryLink

X

Responses
Table 3. http response codes
Code Message Datatype

204

The delivery has been successfully added to an existing invoice.

<<>>

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

{
  "invoiceId" : "5000123"
}

2.3.2. Attach an invoice to a delivery.

POST

/deliveries/{delivery_id}/attach-invoice

Description

A delivery can be linked to only one invoice.
If the delivery is NOT_BILLED, its status will be updated to MARKED_AS_BILLED.
If the delivery is CANCELED, its status will remain CANCELLED.
If the delivery is already MARKED_AS_BILLED, it will remain MARKED_AS_BILLED.

DMF required:
  • DMF AB0414: Api Sales / Deliveries / Attach An Invoice To A Delivery

  • DMF 020435: Sales / Deliveries / Link Invoice To Delivery Note

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

attach_invoice

Details of the invoice to be attached to the delivery InvoiceToDeliveryLink InvoiceToDeliveryLink

X

Responses
Table 4. http response codes
Code Message Datatype

204

The invoice has been successfully attached to the delivery.

<<>>

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

{
  "invoiceId" : "5000123"
}

2.3.3. Batch postpone multiple delivery lines.

POST

/deliveries/{delivery_id}/lines/batch-postpone

Description

All specified delivery lines will be postponed based on the provided dates.
The start date of the lines can be postponed without modifying the end date, or the other way around.
The dates must remain consistent, meaning the end date must be later than the start date.
It is mandatory to specify the postponement type by exact date, period shift, or reset.
Operation impossible le type. obligatoire
If the reset option is selected, the dates will be automatically cleared.

DMF required:
  • DMF AB0411: Api Sales / Deliveries / Batch Update Lines

  • DMF 020416: Sales / Deliveries / Update Selected Lines

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

batch_report

Parameters for batch postponement BatchPostponeDeliveryLines

X

Content Type
  • application/json

Responses
Table 5. http response codes
Code Message Datatype

200

Batch processing completed Delivery lines have been postponed, with details of successes and failures provided.

ManagementObjectBatchResult

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

{
  "ids" : [ "ids", "ids" ],
  "startDate" : {
    "exactDate" : "2020-01-23T04:56:07Z",
    "period" : {
      "numberOfOccurrency" : 4,
      "shiftPeriod" : "{}"
    },
    "type" : "{}"
  },
  "endDate" : {
    "exactDate" : "2020-01-23T04:56:07Z",
    "period" : {
      "numberOfOccurrency" : 4,
      "shiftPeriod" : "{}"
    },
    "type" : "{}"
  }
}

2.3.4. Batch update multiple delivery lines by modifying specific fields.

PATCH

/deliveries/{delivery_id}/lines/batch-update

Description

Batch update multiple delivery lines by modifying specific fields.
This API cannot be used to update all delivery line fields.

DMF required:
  • DMF AB0411: Api Sales / Deliveries / Batch Update Lines

  • DMF 020416: Sales / Deliveries / Update Selected Lines

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

patch_holder

List of patches to apply PatchHolder

X

Content Type
  • application/json

Responses
Table 6. http response codes
Code Message Datatype

200

Batch processing completed Delivery lines updated with details of successes and failures.

ManagementObjectBatchResult

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

{
  "ids" : [ "ids", "ids" ],
  "patchElements" : [ {
    "op" : "ADD",
    "path" : "path",
    "from" : "from",
    "value" : "{}"
  }, {
    "op" : "ADD",
    "path" : "path",
    "from" : "from",
    "value" : "{}"
  } ]
}

2.3.5. Bill a delivery

POST

/deliveries/{delivery_id}/bill

Description

Bill a delivery.
An invoice will be created from this delivery, and the API will return the ID of the generated invoice.
The delivery must not already be billed, marked as billed, or canceled.

DMF required:
  • DMF AB0415: Api Sales / Deliveries / Bill Delivery

  • DMF 020402: Sales / Deliveries / Modify

  • DMF 020501: Sales / Invoices / New

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

delivery_to_invoice

Parameter to bill the delivery DeliveryToInvoiceConversion DeliveryToInvoiceConversion

X

Content Type
  • text/plain

Responses
Table 7. http response codes
Code Message Datatype

200

An invoice has been successfully created from the delivery.

[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

{
  "billingDate" : "2020-01-23T04:56:07Z",
  "factoring" : false,
  "invoiceDescription" : "Text",
  "expectedPaymentDate" : "2020-01-23T04:56:07Z"
}

2.3.6. Cancel a delivery. The delivery must not already be billed, marked as billed, or canceled.

POST

/deliveries/{delivery_id}/cancel

Description

Cancel a delivery. The delivery must not already be billed, marked as billed, or canceled.
A negative delivery will be created with the status CANCELLED.
The initial sales order that was marked as DELIVERED will be automatically canceled.
A negative sales order is automatically created with the status CANCELED.
A positive sales order is created but remains not-validated.

DMF required:
  • DMF AB0418: Api Sales / Deliveries / Cancel Delivery

  • DMF 020418: Sales / Deliveries / Cancel

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

cancel_delivery

Parameters required to cancel a delivery CancelDeliveryParameters CancelDeliveryParameters

X

Responses
Table 8. http response codes
Code Message Datatype

204

The delivery has been successfully canceled.

<<>>

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

{
  "salesOrderDate" : "2020-01-23T04:56:07Z",
  "cancellingDate" : "2020-01-23T04:56:07Z"
}

2.3.7. Associate or change the customer site address in a delivery depending on the site type.

POST

/deliveries/{delivery_id}/set-address

Description

Associate or change the customer site address in a delivery depending on the site type.
The site type can be either a delivery address or a billing address.
The sales order address type is ignored in this API.

DMF required:
  • DMF AB0419: Api Sales / Deliveries / Update Address

  • DMF 020436: Sales / Deliveries / Modify Delivery Site On Validated Delivery Note

  • DMF 020440: Sales / Deliveries / Modify Billing Site Validated Delivery Note

  • DMF 020422: Sales / Deliveries / Addresses

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

site_address

The site address to set to the delivery SalesManagementSite

X

Content Type
  • text/plain

Responses
Table 9. http response codes
Code Message Datatype

200

The delivery has been successfully updated with the customer address

[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

{
  "siteId" : "5000123"
}

2.3.8. Change the customer to bill in a delivery.

POST

/deliveries/{delivery_id}/change-customer-to-bill

Description

Change the customer to bill in a delivery.
The customer to bill must be linked to the main customer of the delivery.

DMF required:
  • DMF AB0417: Api Sales / Deliveries / Change Customer To Bill

  • DMF 020415: Sales / Deliveries / Modify Customer To Bill

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

customerToBillId

The ID of the customer to bill StringParamHolder StringParamHolder

X

Responses
Table 10. http response codes
Code Message Datatype

204

The customer to bill has been successfully updated in the delivery

<<>>

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.3.9. Delete a delivery

DELETE

/deliveries/{delivery_id}

Description

Delete a delivery by its ID.
It is not possible to delete a delivery if its status is BILLED, MARKED_AS_BILLED, CANCELED.

DMF required:
  • DMF AB0403: Api Sales / Deliveries / Delete Delivery

  • DMF 020403: Sales / Deliveries / Delete

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Responses
Table 11. http response codes
Code Message Datatype

204

Delivery has been 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.3.10. Get all recipient contacts in a delivery

GET

/deliveries/{delivery_id}/recipient-contacts

Description

Get all recipient contacts in a delivery.

DMF required:
  • DMF AB0491: Api Sales / Deliveries / Search Recipient Contacts

  • DMF 020106: Sales / Customer / Contacts

  • DMF 020405: Sales / Deliveries / Print

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Content Type
  • application/json

Responses
Table 12. http response codes
Code Message Datatype

200

The recipient contacts have been successfully loaded.

List[RecipientContact]

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. Search a delivery by its ID

GET

/deliveries/{delivery_id}

Description

Get the delivery matching the specified ID.

DMF required:
  • DMF AB0406: Api Sales / Deliveries / Info

  • DMF 020404: Sales / Deliveries / Search

  • DMF 0204__: Sales / Deliveries

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Content Type
  • application/json

Responses
Table 13. http response codes
Code Message Datatype

200

Delivery successfully loaded

Delivery

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. Mark a delivery as billed.

POST

/deliveries/{delivery_id}/mark-billed

Description

Mark a Delivery as Billed.
If the delivery status was 'NOT_BILLED,' it will be updated to 'MARKED_AS_BILLED.'
A canceled delivery can also be marked as billed, but its status will remain CANCELLED.
No invoice will be attached to the delivery, and the billing date will be set to the date provided in the parameter.

DMF required:
  • DMF AB0413: Api Sales / Deliveries / Mark As Billed

  • DMF 020410: Sales / Deliveries / Mark As Billed

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

billing_date

The date when the delivery was billed DateParamHolder. DateParamHolder

X

Responses
Table 14. http response codes
Code Message Datatype

204

The delivery has been successfully marked as billed.

<<>>

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.3.13. Mark a delivery as not-billed.

POST

/deliveries/{delivery_id}/mark-not-billed

Description

Mark a delivery as not-billed.
The billing date will be automatically set to null.
If the delivery is canceled, marking it as not-billed will only clear its billing date, but its status will remain CANCELLED.
If the delivery is BILLED or MARKED_AS_BILLED, its status will automatically change to NOT_BILLED, and any linked invoice will be automatically unlinked.

DMF required:
  • DMF AB0412: Api Sales / Deliveries / Mark As Not Billed

  • DMF 020414: Sales / Deliveries / Mark As Not Billed

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Responses
Table 15. http response codes
Code Message Datatype

204

The delivery has been successfully marked as not billed.

<<>>

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. Patch an existing delivery

PATCH

/deliveries/{delivery_id}

Description

Patch an existing delivery.
Not all fields in a delivery or delivery line can be updated; non-editable fields will be ignored.
Delivery lines cannot be updated.

DMF required:
  • DMF AB0402: Api Sales / Deliveries / Update Delivery

  • DMF 020402: Sales / Deliveries / Modify

  • DMF 020409: Sales / Deliveries / Modify Entity

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

patch_elements

List of patches to apply PatchElement

X

Content Type
  • text/plain

Responses
Table 16. http response codes
Code Message Datatype

200

The delivery has been 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.15. Publish a delivery

POST

/deliveries/{delivery_id}/publish

Description

Publish a delivery using the template given as a parameter.

DMF required:
  • DMF AB0405: Api Sales / Deliveries / Publish

  • DMF 020405: Sales / Deliveries / Print

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing a delivery PublishArguments

X

Content Type
  • application/json

Responses
Table 17. 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.16. Search a delivery with read options

POST

/deliveries/{delivery_id}/read

Description

Get a delivery, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0406: Api Sales / Deliveries / Info

  • DMF 020404: Sales / Deliveries / Search

  • DMF 0204__: Sales / Deliveries

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned delivery DeliveryReadOption

-

Content Type
  • application/json

Responses
Table 18. http response codes
Code Message Datatype

200

Delivery successfully loaded

Delivery

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" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
}

2.3.17. Reset the customer site address in a delivery depending on the site type.

POST

/deliveries/{delivery_id}/sites/{site_type}/reset-address

Description

Reset the customer site address in a delivery depending on the site type.
The site type can be either a delivery address or a billing address.
The sales order address type is ignored in this API.
The delivery cannot be billed, meaning it must not have an associated invoice or a billing date.

DMF required:
  • DMF AB0419: Api Sales / Deliveries / Update Address

  • DMF 020436: Sales / Deliveries / Modify Delivery Site On Validated Delivery Note

  • DMF 020440: Sales / Deliveries / Modify Billing Site Validated Delivery Note

  • DMF 020422: Sales / Deliveries / Addresses

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

site_type

The site type to determine if the site concerns a delivery address or a billing address

X

null

Content Type
  • text/plain

Responses
Table 19. http response codes
Code Message Datatype

200

The delivery has been successfully updated with the customer address

[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.18. Search for deliveries (with search criteria)

POST

/deliveries/search

Description

Get the list of deliveries matching the search criteria.

DMF required:
  • DMF AB0404: Api Sales / Deliveries / Search

  • DMF 020404: Sales / Deliveries / Search

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…​) DeliveryCriteria

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

200

Deliveries successfully loaded

List[Delivery]

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" : "*"
  },
  "date" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "creationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "afterTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "preTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "currencyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "managerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "fiscalYearId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "journalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "description" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "internal" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "group" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "methodOfPayment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "reference1" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference2" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference3" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "opportunityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "chorusCriteria" : {
    "contractNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "commitmentNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "effectiveDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "serviceCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serviceName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "customerDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "salesOrderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "deliverySiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "code" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "sectorId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "accountManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesmanId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
  },
  "lineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serialNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "projectedBillingDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "externalReference" : {
    "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" : "*"
  },
  "signatureDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "origin" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "cancellingState" : {
    "isActive" : true,
    "referenceDate" : "2029-01-23T04:56:07Z",
    "dateOperator" : "{}"
  },
  "billingState" : {
    "isActive" : true,
    "referenceDate" : "2029-01-23T04:56:07Z",
    "dateOperator" : "{}"
  },
  "markedAsBillingState" : {
    "isActive" : true,
    "referenceDate" : "2029-01-23T04:56:07Z",
    "dateOperator" : "{}"
  },
  "changeTracking" : {
    "createdTime" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "createdById" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "updatedTime" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "updatedById" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  }
}

2.3.19. Send a delivery by email

POST

/deliveries/{delivery_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 AB0490: Api Sales / Deliveries / Send Message

  • DMF 020405: Sales / Deliveries / Print

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

mail

The message to send TemplatedMessage

-

Responses
Table 21. 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.3.20. Update a delivery

POST

/deliveries/{delivery_id}

Description

Update a delivery

DMF required:
  • DMF AB0402: Api Sales / Deliveries / Update Delivery

  • DMF 020402: Sales / Deliveries / Modify

  • DMF 020409: Sales / Deliveries / Modify Entity

Parameters
Path Parameters
Name Description Required Default Pattern

delivery_id

The id of the delivery

X

null

Body Parameter
Name Description Required Default Pattern

delivery

The delivery to update Delivery

X

Content Type
  • text/plain

Responses
Table 22. http response codes
Code Message Datatype

200

Delivery 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",
  "project" : {
    "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" : "{}"
  },
  "projectId" : "PRJT_001",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "51000122",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "number" : "CC00001",
  "name" : "Label for my doc",
  "type" : "{}",
  "companyCode" : "AKSAS",
  "companyId" : "5000123",
  "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"
  },
  "date" : "2000-06-21T04:56:07.000+00:00",
  "description" : "Lorem ipsum",
  "entityCode" : "Lyon",
  "afterTaxAmount" : 120.37,
  "preTaxAmount" : 100.14,
  "thirdPartyId" : "CUSTOMER01",
  "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"
  },
  "approvalState" : "{}",
  "approvalDate" : "2000-06-21T04:56:07.000+00:00",
  "exchangeRate" : 10.26,
  "thirdPartyToBillId" : "CUSTOMER02",
  "manager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "managerId" : "5000123",
  "payment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "End of month",
    "day" : 10
  },
  "conditionOfPayment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "1",
    "day" : 10
  },
  "methodOfPayment" : "{}",
  "fiscalYear" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "journalEntryNumberingId" : "5000123"
  },
  "fiscalYearId" : "5000123",
  "accountingJournal" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "startDate" : "2000-06-21",
    "endDate" : "2000-06-21",
    "miscellaneousTransactionsProhibited" : true,
    "excludedByDefault" : true
  },
  "accountingJournalId" : "1203",
  "internal" : true,
  "group" : true,
  "assignmentIndicator" : "{}",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "afterTaxAmountCurrency" : 1500,
  "preTaxAmountCurrency" : 100.14,
  "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
  },
  "reference1" : "CUSTOM_REF_1",
  "reference2" : "CUSTOM_REF_2",
  "reference3" : "CUSTOM_REF_3",
  "customer" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerId" : "5000123",
  "customerToBill" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerToBillId" : "5000123",
  "objectHistoryLinks" : [ {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  }, {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  } ],
  "chorusProperties" : {
    "serviceCode" : "Z-FDJ-CA",
    "serviceName" : "SCA",
    "contractNumber" : "5000123",
    "commitmentNumber" : "5000123",
    "marketName" : "Lorem ipsum",
    "effectiveDate" : "2020-01-31T23:59:59Z"
  },
  "customerDate" : "2020-01-31T23:59:59Z",
  "entity" : {
    "id" : "5000123",
    "code" : "01-BRDX",
    "name" : "Bordeaux"
  },
  "entityId" : "5000123",
  "titleLines" : [ {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  }, {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  } ],
  "salesOrderSiteId" : "5000123",
  "salesOrderSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "deliverySiteId" : "5000123",
  "deliverySite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "billingSiteId" : "5000123",
  "billingSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "lines" : [ {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false
  }, {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false
  } ],
  "projectedBillingDate" : "2025-05-23T04:56:07Z",
  "externalReference" : "Lorem Ipsum",
  "quotationId" : "CC2500004",
  "orderId" : "CC2500005",
  "billingTableId" : "5001168",
  "invoiceId" : "5568912",
  "origin" : "{}",
  "groupingCode" : "CUSTOM_GROUP",
  "state" : "state",
  "cancellingDate" : "2025-02-02T04:56:07Z",
  "billingDate" : "2025-02-02T04:56:07Z",
  "signatureDate" : "2025-06-26T04:56:07Z"
}

2.4. Packs

2.4.1. Search for packs (with search criteria)

POST

/packs/search

Description

Get the list of packs matching the search criteria.

DMF required:
  • DMF AB1004: Api Sales / Packs / Search

  • DMF 021704: Sales / Packages / Search

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (Grouping, reference, etc…​) PackCriteria

X

Return Type

array[Pack]

Content Type
  • application/json

Responses
Table 23. http response codes
Code Message Datatype

200

Packs successfully loaded

List[Pack]

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

{
  "reference" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "soldItemCriteria" : {
    "companyCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "linkedToAdvancePayments" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "entityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customData" : {
      "key" : {
        "operator" : "IS",
        "value" : "{}",
        "includeNullResults" : false
      }
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "inventory" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "readOption" : {
      "options" : [ "PRODUCTION_INFORMATIONS", "PRODUCTION_INFORMATIONS" ]
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "teamId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "defaultDisplay" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "name" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "validity" : {
      "date" : "2000-01-23T04:56:07.000+00:00"
    },
    "tag" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketEndDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "packagingType" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validity" : {
    "date" : "2000-01-23T04:56:07.000+00:00"
  },
  "tag" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "grouping" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "ENTITY", "ENTITY" ]
  }
}

2.5. Production Catalogs

2.5.1. Get the list of production catalog matching the search criteria.

POST

/customer/{customer_id}/production-catalogs/search

Description

Get the list of production catalog matching the search criteria.

DMF required:
  • DMF AB0814: Api Sales / Productions To Be Billed / Production Template

  • DMF 1920__: Web Portal / Services

  • DMF 192001: Web Portal / Services / New

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

Criteria that you choose (id, code, etc…) ProductionCatalogCriteria

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

200

Production catalogs have been successfully loaded

List[ProductionCatalog]

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

{
  "hideElseAvailableProduction" : true,
  "itemId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "projectTaskId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "phaseId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "subPhaseId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "defaultDisplay" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "employeeId" : "employeeId",
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "projectId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "CUSTOMER", "CUSTOMER" ]
  }
}

2.6. Productions To Be Billed

2.6.1. Create a production to be billed

PUT

/productions

Description

Create a production to be billed

DMF required:
  • DMF AB0801: Api Sales / Productions To Be Billed / Insert

  • DMF 1920__: Web Portal / Services

  • DMF 192001: Web Portal / Services / New

Parameters
Body Parameter
Name Description Required Default Pattern

production

The production to be billed to create Production

X

Content Type
  • text/plain

Responses
Table 25. http response codes
Code Message Datatype

201

Production to be billed 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

{
  "unitPrice" : 36.32,
  "approver" : {
    "id" : "5000123",
    "code" : "TRI",
    "name" : "Doe",
    "firstName" : "John"
  },
  "denialDate" : "2020-01-31T23:59:59Z",
  "quantity" : 3,
  "quotationId" : "CD220100001",
  "productionCatalog" : {
    "id" : "5000123",
    "quotationId" : "CD220100001",
    "label" : "Payroll",
    "quantity" : 2,
    "unitPrice" : 36.32,
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "item" : {
      "id" : "5000123"
    },
    "itemId" : "5000124",
    "targetDay" : 22,
    "billingTargetDay" : 5,
    "estimatedDuration" : 240,
    "defaultDisplay" : false
  },
  "productionCatalogId" : "5000123",
  "approverId" : "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
  },
  "employeeId" : "5000123",
  "validationDate" : "2020-01-31T23:59:59Z",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "targetMonth" : "2024-01",
  "billingDate" : "2020-01-31T23:59:59Z",
  "totalDurations" : {
    "durationMinute" : 240,
    "durationHourMinute" : 2.3,
    "durationHour" : 2.7,
    "durationDay" : 0.25
  },
  "changeTracking" : {
    "createdTime" : "2000-06-21T04:56:07.000+00:00",
    "createdBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "createdById" : "5000123",
    "modificationTime" : "2000-06-21T04:56:07.000+00:00",
    "modificationBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "modificationById" : "5000123"
  },
  "invoiceNumber" : "FF2200123456",
  "comment" : "Lorem ipsum",
  "id" : "5000123",
  "quotation" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "number" : "CC00001",
    "name" : "Label for my doc",
    "type" : "{}",
    "companyCode" : "AKSAS",
    "companyId" : "5000123",
    "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"
    },
    "date" : "2000-06-21T04:56:07.000+00:00",
    "description" : "Lorem ipsum",
    "entityCode" : "Lyon",
    "afterTaxAmount" : 120.37,
    "preTaxAmount" : 100.14,
    "thirdPartyId" : "CUSTOMER01",
    "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"
    },
    "approvalState" : "{}",
    "approvalDate" : "2000-06-21T04:56:07.000+00:00",
    "exchangeRate" : 10.26,
    "thirdPartyToBillId" : "CUSTOMER02",
    "manager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "managerId" : "5000123",
    "payment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "End of month",
      "day" : 10
    },
    "conditionOfPayment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "1",
      "day" : 10
    },
    "methodOfPayment" : "{}",
    "fiscalYear" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "journalEntryNumberingId" : "5000123"
    },
    "fiscalYearId" : "5000123",
    "accountingJournal" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "startDate" : "2000-06-21",
      "endDate" : "2000-06-21",
      "miscellaneousTransactionsProhibited" : true,
      "excludedByDefault" : true
    },
    "accountingJournalId" : "1203",
    "internal" : true,
    "group" : true,
    "assignmentIndicator" : "{}",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "afterTaxAmountCurrency" : 1500,
    "preTaxAmountCurrency" : 100.14,
    "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
    },
    "reference1" : "CUSTOM_REF_1",
    "reference2" : "CUSTOM_REF_2",
    "reference3" : "CUSTOM_REF_3",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "customerToBill" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerToBillId" : "5000123",
    "objectHistoryLinks" : [ {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    }, {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    } ],
    "chorusProperties" : {
      "serviceCode" : "Z-FDJ-CA",
      "serviceName" : "SCA",
      "contractNumber" : "5000123",
      "commitmentNumber" : "5000123",
      "marketName" : "Lorem ipsum",
      "effectiveDate" : "2020-01-31T23:59:59Z"
    },
    "customerDate" : "2020-01-31T23:59:59Z",
    "entity" : {
      "id" : "5000123",
      "code" : "01-BRDX",
      "name" : "Bordeaux"
    },
    "entityId" : "5000123",
    "titleLines" : [ {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    }, {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    } ],
    "salesOrderSiteId" : "5000123",
    "salesOrderSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "deliverySiteId" : "5000123",
    "deliverySite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "billingSiteId" : "5000123",
    "billingSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "externalNumber" : "Salesforce",
    "expectedSignatureDate" : "2020-01-31T23:59:59Z",
    "actualSignatureDate" : "2020-02-01T00:00:00Z",
    "notified" : true,
    "contractNumber" : "contractNumber",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "notificationDate" : "2020-01-31T23:59:59Z",
    "lines" : [ {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    }, {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    } ],
    "expenseLines" : [ {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    }, {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    } ],
    "validationDate" : "2020-01-31T23:59:59Z",
    "quotationProbability" : "{}",
    "state" : "{}",
    "opportunity" : {
      "id" : "5000123",
      "code" : "OP2025",
      "name" : "ON PREMISE"
    },
    "opportunityId" : "5000123",
    "technicalManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "technicalManagerId" : "5000123",
    "durationOfValidity" : 3,
    "origin" : "{}",
    "salesManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesManagerId" : "5000123",
    "theoricalMargin" : 2.027123023002322,
    "commissionRate" : 50,
    "pipe" : {
      "id" : "5000123",
      "code" : "BIZZ",
      "name" : "Business"
    },
    "pipeId" : "5000678",
    "weightingCoefficient" : 0.85,
    "linesHierarchy" : [ {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    }, {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    } ],
    "archivingDate" : "2020-01-31T23:59:59Z",
    "archiveComment" : "Lorem ipsum",
    "archiveReason" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name"
    },
    "archiveReasonId" : "500000010",
    "eSignatureTransactions" : [ {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    }, {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    } ],
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    }
  },
  "referentialDate" : "2020-01-31T23:59:59Z"
}

2.6.2. Create several productions to be billed

POST

/productions/batch-create

Description

Create several productions to be billed.
The identifiers will be created in the order of the posted productions.

DMF required:
  • DMF AB0801: Api Sales / Productions To Be Billed / Insert

  • DMF 1920__: Web Portal / Services

  • DMF 192001: Web Portal / Services / New

Parameters
Body Parameter
Name Description Required Default Pattern

productions

The productions to be billed to create Array of Productions Production

X

Content Type
  • application/json

Responses
Table 26. http response codes
Code Message Datatype

201

Productions to be billed has been successfully created

List[[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

{
  "unitPrice" : 36.32,
  "approver" : {
    "id" : "5000123",
    "code" : "TRI",
    "name" : "Doe",
    "firstName" : "John"
  },
  "denialDate" : "2020-01-31T23:59:59Z",
  "quantity" : 3,
  "quotationId" : "CD220100001",
  "productionCatalog" : {
    "id" : "5000123",
    "quotationId" : "CD220100001",
    "label" : "Payroll",
    "quantity" : 2,
    "unitPrice" : 36.32,
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "item" : {
      "id" : "5000123"
    },
    "itemId" : "5000124",
    "targetDay" : 22,
    "billingTargetDay" : 5,
    "estimatedDuration" : 240,
    "defaultDisplay" : false
  },
  "productionCatalogId" : "5000123",
  "approverId" : "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
  },
  "employeeId" : "5000123",
  "validationDate" : "2020-01-31T23:59:59Z",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "targetMonth" : "2024-01",
  "billingDate" : "2020-01-31T23:59:59Z",
  "totalDurations" : {
    "durationMinute" : 240,
    "durationHourMinute" : 2.3,
    "durationHour" : 2.7,
    "durationDay" : 0.25
  },
  "changeTracking" : {
    "createdTime" : "2000-06-21T04:56:07.000+00:00",
    "createdBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "createdById" : "5000123",
    "modificationTime" : "2000-06-21T04:56:07.000+00:00",
    "modificationBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "modificationById" : "5000123"
  },
  "invoiceNumber" : "FF2200123456",
  "comment" : "Lorem ipsum",
  "id" : "5000123",
  "quotation" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "number" : "CC00001",
    "name" : "Label for my doc",
    "type" : "{}",
    "companyCode" : "AKSAS",
    "companyId" : "5000123",
    "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"
    },
    "date" : "2000-06-21T04:56:07.000+00:00",
    "description" : "Lorem ipsum",
    "entityCode" : "Lyon",
    "afterTaxAmount" : 120.37,
    "preTaxAmount" : 100.14,
    "thirdPartyId" : "CUSTOMER01",
    "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"
    },
    "approvalState" : "{}",
    "approvalDate" : "2000-06-21T04:56:07.000+00:00",
    "exchangeRate" : 10.26,
    "thirdPartyToBillId" : "CUSTOMER02",
    "manager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "managerId" : "5000123",
    "payment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "End of month",
      "day" : 10
    },
    "conditionOfPayment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "1",
      "day" : 10
    },
    "methodOfPayment" : "{}",
    "fiscalYear" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "journalEntryNumberingId" : "5000123"
    },
    "fiscalYearId" : "5000123",
    "accountingJournal" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "startDate" : "2000-06-21",
      "endDate" : "2000-06-21",
      "miscellaneousTransactionsProhibited" : true,
      "excludedByDefault" : true
    },
    "accountingJournalId" : "1203",
    "internal" : true,
    "group" : true,
    "assignmentIndicator" : "{}",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "afterTaxAmountCurrency" : 1500,
    "preTaxAmountCurrency" : 100.14,
    "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
    },
    "reference1" : "CUSTOM_REF_1",
    "reference2" : "CUSTOM_REF_2",
    "reference3" : "CUSTOM_REF_3",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "customerToBill" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerToBillId" : "5000123",
    "objectHistoryLinks" : [ {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    }, {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    } ],
    "chorusProperties" : {
      "serviceCode" : "Z-FDJ-CA",
      "serviceName" : "SCA",
      "contractNumber" : "5000123",
      "commitmentNumber" : "5000123",
      "marketName" : "Lorem ipsum",
      "effectiveDate" : "2020-01-31T23:59:59Z"
    },
    "customerDate" : "2020-01-31T23:59:59Z",
    "entity" : {
      "id" : "5000123",
      "code" : "01-BRDX",
      "name" : "Bordeaux"
    },
    "entityId" : "5000123",
    "titleLines" : [ {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    }, {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    } ],
    "salesOrderSiteId" : "5000123",
    "salesOrderSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "deliverySiteId" : "5000123",
    "deliverySite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "billingSiteId" : "5000123",
    "billingSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "externalNumber" : "Salesforce",
    "expectedSignatureDate" : "2020-01-31T23:59:59Z",
    "actualSignatureDate" : "2020-02-01T00:00:00Z",
    "notified" : true,
    "contractNumber" : "contractNumber",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "notificationDate" : "2020-01-31T23:59:59Z",
    "lines" : [ {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    }, {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    } ],
    "expenseLines" : [ {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    }, {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    } ],
    "validationDate" : "2020-01-31T23:59:59Z",
    "quotationProbability" : "{}",
    "state" : "{}",
    "opportunity" : {
      "id" : "5000123",
      "code" : "OP2025",
      "name" : "ON PREMISE"
    },
    "opportunityId" : "5000123",
    "technicalManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "technicalManagerId" : "5000123",
    "durationOfValidity" : 3,
    "origin" : "{}",
    "salesManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesManagerId" : "5000123",
    "theoricalMargin" : 2.027123023002322,
    "commissionRate" : 50,
    "pipe" : {
      "id" : "5000123",
      "code" : "BIZZ",
      "name" : "Business"
    },
    "pipeId" : "5000678",
    "weightingCoefficient" : 0.85,
    "linesHierarchy" : [ {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    }, {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    } ],
    "archivingDate" : "2020-01-31T23:59:59Z",
    "archiveComment" : "Lorem ipsum",
    "archiveReason" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name"
    },
    "archiveReasonId" : "500000010",
    "eSignatureTransactions" : [ {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    }, {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    } ],
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    }
  },
  "referentialDate" : "2020-01-31T23:59:59Z"
}

2.6.3. Delete a production to be billed

DELETE

/productions/{production_id}

Description

Delete a production to be billed

DMF required:
  • DMF AB0803: Api Sales / Productions To Be Billed / Delete

  • DMF 1920__: Web Portal / Services

  • DMF 192003: Web Portal / Services / Delete

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Responses
Table 27. http response codes
Code Message Datatype

204

Production to be billed has been 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.6.4. Get a production to be billed

GET

/productions/{production_id}

Description

Get a production to be billed

DMF required:
  • DMF AB0806: Api Sales / Productions To Be Billed / Info

  • DMF 1920__: Web Portal / Services

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Content Type
  • application/json

Responses
Table 28. http response codes
Code Message Datatype

200

Production to be billed has been successfully loaded

Production

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.6.5. Pre-fill a production

POST

/productions/pre-fill

Description

Pre-fill a production

DMF required:
  • DMF AB0801: Api Sales / Productions To Be Billed / Insert

  • DMF 1920__: Web Portal / Services

  • DMF 192001: Web Portal / Services / New

Parameters
Body Parameter
Name Description Required Default Pattern

production

The production being created Production

-

Content Type
  • application/json

Responses
Table 29. http response codes
Code Message Datatype

200

Production successfully prefilled

Production

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

{
  "unitPrice" : 36.32,
  "approver" : {
    "id" : "5000123",
    "code" : "TRI",
    "name" : "Doe",
    "firstName" : "John"
  },
  "denialDate" : "2020-01-31T23:59:59Z",
  "quantity" : 3,
  "quotationId" : "CD220100001",
  "productionCatalog" : {
    "id" : "5000123",
    "quotationId" : "CD220100001",
    "label" : "Payroll",
    "quantity" : 2,
    "unitPrice" : 36.32,
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "item" : {
      "id" : "5000123"
    },
    "itemId" : "5000124",
    "targetDay" : 22,
    "billingTargetDay" : 5,
    "estimatedDuration" : 240,
    "defaultDisplay" : false
  },
  "productionCatalogId" : "5000123",
  "approverId" : "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
  },
  "employeeId" : "5000123",
  "validationDate" : "2020-01-31T23:59:59Z",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "targetMonth" : "2024-01",
  "billingDate" : "2020-01-31T23:59:59Z",
  "totalDurations" : {
    "durationMinute" : 240,
    "durationHourMinute" : 2.3,
    "durationHour" : 2.7,
    "durationDay" : 0.25
  },
  "changeTracking" : {
    "createdTime" : "2000-06-21T04:56:07.000+00:00",
    "createdBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "createdById" : "5000123",
    "modificationTime" : "2000-06-21T04:56:07.000+00:00",
    "modificationBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "modificationById" : "5000123"
  },
  "invoiceNumber" : "FF2200123456",
  "comment" : "Lorem ipsum",
  "id" : "5000123",
  "quotation" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "number" : "CC00001",
    "name" : "Label for my doc",
    "type" : "{}",
    "companyCode" : "AKSAS",
    "companyId" : "5000123",
    "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"
    },
    "date" : "2000-06-21T04:56:07.000+00:00",
    "description" : "Lorem ipsum",
    "entityCode" : "Lyon",
    "afterTaxAmount" : 120.37,
    "preTaxAmount" : 100.14,
    "thirdPartyId" : "CUSTOMER01",
    "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"
    },
    "approvalState" : "{}",
    "approvalDate" : "2000-06-21T04:56:07.000+00:00",
    "exchangeRate" : 10.26,
    "thirdPartyToBillId" : "CUSTOMER02",
    "manager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "managerId" : "5000123",
    "payment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "End of month",
      "day" : 10
    },
    "conditionOfPayment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "1",
      "day" : 10
    },
    "methodOfPayment" : "{}",
    "fiscalYear" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "journalEntryNumberingId" : "5000123"
    },
    "fiscalYearId" : "5000123",
    "accountingJournal" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "startDate" : "2000-06-21",
      "endDate" : "2000-06-21",
      "miscellaneousTransactionsProhibited" : true,
      "excludedByDefault" : true
    },
    "accountingJournalId" : "1203",
    "internal" : true,
    "group" : true,
    "assignmentIndicator" : "{}",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "afterTaxAmountCurrency" : 1500,
    "preTaxAmountCurrency" : 100.14,
    "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
    },
    "reference1" : "CUSTOM_REF_1",
    "reference2" : "CUSTOM_REF_2",
    "reference3" : "CUSTOM_REF_3",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "customerToBill" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerToBillId" : "5000123",
    "objectHistoryLinks" : [ {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    }, {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    } ],
    "chorusProperties" : {
      "serviceCode" : "Z-FDJ-CA",
      "serviceName" : "SCA",
      "contractNumber" : "5000123",
      "commitmentNumber" : "5000123",
      "marketName" : "Lorem ipsum",
      "effectiveDate" : "2020-01-31T23:59:59Z"
    },
    "customerDate" : "2020-01-31T23:59:59Z",
    "entity" : {
      "id" : "5000123",
      "code" : "01-BRDX",
      "name" : "Bordeaux"
    },
    "entityId" : "5000123",
    "titleLines" : [ {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    }, {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    } ],
    "salesOrderSiteId" : "5000123",
    "salesOrderSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "deliverySiteId" : "5000123",
    "deliverySite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "billingSiteId" : "5000123",
    "billingSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "externalNumber" : "Salesforce",
    "expectedSignatureDate" : "2020-01-31T23:59:59Z",
    "actualSignatureDate" : "2020-02-01T00:00:00Z",
    "notified" : true,
    "contractNumber" : "contractNumber",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "notificationDate" : "2020-01-31T23:59:59Z",
    "lines" : [ {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    }, {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    } ],
    "expenseLines" : [ {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    }, {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    } ],
    "validationDate" : "2020-01-31T23:59:59Z",
    "quotationProbability" : "{}",
    "state" : "{}",
    "opportunity" : {
      "id" : "5000123",
      "code" : "OP2025",
      "name" : "ON PREMISE"
    },
    "opportunityId" : "5000123",
    "technicalManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "technicalManagerId" : "5000123",
    "durationOfValidity" : 3,
    "origin" : "{}",
    "salesManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesManagerId" : "5000123",
    "theoricalMargin" : 2.027123023002322,
    "commissionRate" : 50,
    "pipe" : {
      "id" : "5000123",
      "code" : "BIZZ",
      "name" : "Business"
    },
    "pipeId" : "5000678",
    "weightingCoefficient" : 0.85,
    "linesHierarchy" : [ {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    }, {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    } ],
    "archivingDate" : "2020-01-31T23:59:59Z",
    "archiveComment" : "Lorem ipsum",
    "archiveReason" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name"
    },
    "archiveReasonId" : "500000010",
    "eSignatureTransactions" : [ {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    }, {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    } ],
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    }
  },
  "referentialDate" : "2020-01-31T23:59:59Z"
}

2.6.6. Publish a production to be billed

POST

/productions/{production_id}/publish

Description

Publish a production to be billed using the template given as a parameter.

DMF required:
  • DMF AB0805: Api Sales / Productions To Be Billed / Publish

  • DMF 1920__: Web Portal / Services

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing production to be billed PublishArguments

X

Content Type
  • application/json

Responses
Table 30. 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.6.7. Publish of the productions to be billed matching the specified IDs

POST

/productions/publish

Description

Publish of the productions to be billed matching the specified IDs

DMF required:
  • DMF AB0805: Api Sales / Productions To Be Billed / Publish

  • DMF 1920__: Web Portal / Services

Parameters
Body Parameter
Name Description Required Default Pattern

publish_arguments

Idents of the productions to be billed to publish ProductionPublishArguments

X

Content Type
  • application/json

Responses
Table 31. 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

{
  "publishArguments" : {
    "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
  },
  "ids" : [ "ids", "ids" ]
}

2.6.8. Search a production to be billed with read options

POST

/productions/{production_id}/read

Description

Get a production to be billed, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0806: Api Sales / Productions To Be Billed / Info

  • DMF 1920__: Web Portal / Services

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned production to be billed ProductionReadOption

-

Content Type
  • application/json

Responses
Table 32. http response codes
Code Message Datatype

200

Production to be billed successfully loaded

Production

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" : [ "EMPLOYEE", "EMPLOYEE" ]
}

2.6.9. Refuse a production to be billed matching the specified ID

POST

/productions/{production_id}/refuse

Description

Refuse a production to be billed matching the specified ID

DMF required:
  • DMF AB0812: Api Sales / Productions To Be Billed / Refuse

  • DMF 192101: Web Portal / Validate Services / Validate All Services

  • DMF 192103: Web Portal / Validate Services / Validate Services As Line Manager

  • DMF 192104: Web Portal / Validate Services / Validate Services As Project Manager

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Responses
Table 33. http response codes
Code Message Datatype

204

Production to be billed successfully refused

<<>>

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.6.10. Refuse productions to be billed matching the specified IDs

POST

/productions/refuse

Description

Refuse productions to be billed matching the specified IDs

DMF required:
  • DMF AB0812: Api Sales / Productions To Be Billed / Refuse

  • DMF 192101: Web Portal / Validate Services / Validate All Services

  • DMF 192103: Web Portal / Validate Services / Validate Services As Line Manager

  • DMF 192104: Web Portal / Validate Services / Validate Services As Project Manager

Parameters
Body Parameter
Name Description Required Default Pattern

ids

Idents of the productions to be billed to refuse [string]

X

Responses
Table 34. http response codes
Code Message Datatype

204

Productions to be billed successfully refused

<<>>

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


2.6.11. Reset status of a production to be billed matching the specified ID

POST

/productions/{production_id}/reset-status

Description

Reset status of a production to be billed matching the specified ID

DMF required:
  • DMF AB0813: Api Sales / Productions To Be Billed / Reset Status

  • DMF 192102: Web Portal / Validate Services / Cancel Validation

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Responses
Table 35. http response codes
Code Message Datatype

204

Production to be billed successfully reset

<<>>

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.6.12. Reset status of the productions to be billed matching the specified IDs

POST

/productions/reset-status

Description

Reset status of the productions to be billed matching the specified IDs

DMF required:
  • DMF AB0813: Api Sales / Productions To Be Billed / Reset Status

  • DMF 192102: Web Portal / Validate Services / Cancel Validation

Parameters
Body Parameter
Name Description Required Default Pattern

ids

Idents of the productions to be billed to reset [string]

X

Responses
Table 36. http response codes
Code Message Datatype

204

Productions to be billed successfully reset

<<>>

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


2.6.13. Search for search field behavior for productions employee to be billed

GET

/productions/employee/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 productions employee to be billed

DMF required:
  • DMF AB0815: Api Sales / Productions To Be Billed / Search Fields Behavior For Employee

  • DMF 1920__: Web Portal / Services

Content Type
  • application/json

Responses
Table 37. 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.6.14. Search for search field behavior for productions manager to be billed

GET

/productions/manager/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 productions manager to be billed

DMF required:
  • DMF AB0810: Api Sales / Productions To Be Billed / Search Fields Behavior

  • DMF 1921__: Web Portal / Validate Services

Content Type
  • application/json

Responses
Table 38. 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.6.15. Search production projects

POST

/productions/customers/{customer_id}/projects/search

Description

Get the list of a customer’s projects linked to productions to bill matching with the search criteria below

DMF required:
  • DMF A90104: Api Project / Projects / Search External

  • DMF 0202__: Sales / Quotations

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020204: Sales / Quotations / Search

  • DMF 060104: Projects

  • DMF 142602: Helpdesk / Simplified Issue / Modify

  • DMF 190302: Web Portal / Timesheets / Modify

  • DMF 190402: Web Portal / Schedules / Modify

  • DMF 1905__: Web Portal / Expense Reports

  • DMF 2501__: Project / Schedule View

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 ProductionProjectCriteria

-

Content Type
  • application/json

Responses
Table 39. http response codes
Code Message Datatype

200

Projects successfully loaded

List[ProjectBase]

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" : "*"
  },
  "quotationState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "tag" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "hideUnsignedQuotation" : true
}

2.6.16. Get the list of productions to be billed for a given manager.

POST

/productions/managers/{manager_id}

Description

Get the list of productions to be billed for a given manager.

DMF required:
  • DMF AB0804: Api Sales / Productions To Be Billed / Search

  • DMF 1920__: Web Portal / Services

  • DMF 192004: Web Portal / Services / Search

  • DMF 192107: Web Portal / Validate Services / Search

Parameters
Path Parameters
Name Description Required Default Pattern

manager_id

The id of a manager

X

null

Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (id, code, etc…) ProductionCriteria

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

200

Productions to be billed for a manager have been successfully loaded

List[Production]

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

{
  "unitPrice" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "denialDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "quantity" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "approverId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationCriteria" : {
    "quotationId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "employeeId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "targetMonth" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "readOption" : {
    "options" : [ "EMPLOYEE", "EMPLOYEE" ]
  },
  "billingDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "managementProjectCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "name" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "tag" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerProjectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "referentialDate" : "2000-06-21T04:56:07.000+00:00",
    "projectGroupCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "divisionId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "entityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "divisionGroupingId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryLevel2Id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "activityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "managerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "financialManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "productionManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectState" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "departmentId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "yearId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "companyId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "invoiceNumber" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationLineId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "comment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "referentialDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "status" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.6.17. Get the list of productions to be billed for a given employee.

POST

/productions/employees/{employee_id}

Description

Get the list of productions to be billed for a given employee.

DMF required:
  • DMF AB0804: Api Sales / Productions To Be Billed / Search

  • DMF 1920__: Web Portal / Services

  • DMF 192004: Web Portal / Services / Search

  • DMF 192107: Web Portal / Validate Services / Search

Parameters
Path Parameters
Name Description Required Default Pattern

employee_id

The id of an employee

X

null

Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (id, code, etc…) ProductionCriteria

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

200

Productions to be billed for an employee have been successfully loaded

List[Production]

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

{
  "unitPrice" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "denialDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "quantity" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "approverId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationCriteria" : {
    "quotationId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "employeeId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "targetMonth" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "readOption" : {
    "options" : [ "EMPLOYEE", "EMPLOYEE" ]
  },
  "billingDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "managementProjectCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "name" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "tag" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerProjectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "referentialDate" : "2000-06-21T04:56:07.000+00:00",
    "projectGroupCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "divisionId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "entityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "divisionGroupingId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryLevel2Id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "activityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "managerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "financialManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "productionManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectState" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "departmentId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "yearId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "companyId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "invoiceNumber" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationLineId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "comment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "referentialDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "status" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.6.18. Update a production to be billed

POST

/productions/{production_id}

Description

Update a production to be billed

DMF required:
  • DMF AB0802: Api Sales / Productions To Be Billed / Update

  • DMF 1920__: Web Portal / Services

  • DMF 192002: Web Portal / Services / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Body Parameter
Name Description Required Default Pattern

production

The production to be billed to update Production

X

Content Type
  • text/plain

Responses
Table 42. http response codes
Code Message Datatype

200

Production to be billed 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

{
  "unitPrice" : 36.32,
  "approver" : {
    "id" : "5000123",
    "code" : "TRI",
    "name" : "Doe",
    "firstName" : "John"
  },
  "denialDate" : "2020-01-31T23:59:59Z",
  "quantity" : 3,
  "quotationId" : "CD220100001",
  "productionCatalog" : {
    "id" : "5000123",
    "quotationId" : "CD220100001",
    "label" : "Payroll",
    "quantity" : 2,
    "unitPrice" : 36.32,
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "item" : {
      "id" : "5000123"
    },
    "itemId" : "5000124",
    "targetDay" : 22,
    "billingTargetDay" : 5,
    "estimatedDuration" : 240,
    "defaultDisplay" : false
  },
  "productionCatalogId" : "5000123",
  "approverId" : "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
  },
  "employeeId" : "5000123",
  "validationDate" : "2020-01-31T23:59:59Z",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "targetMonth" : "2024-01",
  "billingDate" : "2020-01-31T23:59:59Z",
  "totalDurations" : {
    "durationMinute" : 240,
    "durationHourMinute" : 2.3,
    "durationHour" : 2.7,
    "durationDay" : 0.25
  },
  "changeTracking" : {
    "createdTime" : "2000-06-21T04:56:07.000+00:00",
    "createdBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "createdById" : "5000123",
    "modificationTime" : "2000-06-21T04:56:07.000+00:00",
    "modificationBy" : {
      "id" : "5000123",
      "code" : "TRI",
      "name" : "Doe",
      "firstName" : "John"
    },
    "modificationById" : "5000123"
  },
  "invoiceNumber" : "FF2200123456",
  "comment" : "Lorem ipsum",
  "id" : "5000123",
  "quotation" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "number" : "CC00001",
    "name" : "Label for my doc",
    "type" : "{}",
    "companyCode" : "AKSAS",
    "companyId" : "5000123",
    "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"
    },
    "date" : "2000-06-21T04:56:07.000+00:00",
    "description" : "Lorem ipsum",
    "entityCode" : "Lyon",
    "afterTaxAmount" : 120.37,
    "preTaxAmount" : 100.14,
    "thirdPartyId" : "CUSTOMER01",
    "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"
    },
    "approvalState" : "{}",
    "approvalDate" : "2000-06-21T04:56:07.000+00:00",
    "exchangeRate" : 10.26,
    "thirdPartyToBillId" : "CUSTOMER02",
    "manager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "managerId" : "5000123",
    "payment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "End of month",
      "day" : 10
    },
    "conditionOfPayment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "1",
      "day" : 10
    },
    "methodOfPayment" : "{}",
    "fiscalYear" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "journalEntryNumberingId" : "5000123"
    },
    "fiscalYearId" : "5000123",
    "accountingJournal" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "startDate" : "2000-06-21",
      "endDate" : "2000-06-21",
      "miscellaneousTransactionsProhibited" : true,
      "excludedByDefault" : true
    },
    "accountingJournalId" : "1203",
    "internal" : true,
    "group" : true,
    "assignmentIndicator" : "{}",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "afterTaxAmountCurrency" : 1500,
    "preTaxAmountCurrency" : 100.14,
    "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
    },
    "reference1" : "CUSTOM_REF_1",
    "reference2" : "CUSTOM_REF_2",
    "reference3" : "CUSTOM_REF_3",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "customerToBill" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerToBillId" : "5000123",
    "objectHistoryLinks" : [ {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    }, {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    } ],
    "chorusProperties" : {
      "serviceCode" : "Z-FDJ-CA",
      "serviceName" : "SCA",
      "contractNumber" : "5000123",
      "commitmentNumber" : "5000123",
      "marketName" : "Lorem ipsum",
      "effectiveDate" : "2020-01-31T23:59:59Z"
    },
    "customerDate" : "2020-01-31T23:59:59Z",
    "entity" : {
      "id" : "5000123",
      "code" : "01-BRDX",
      "name" : "Bordeaux"
    },
    "entityId" : "5000123",
    "titleLines" : [ {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    }, {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    } ],
    "salesOrderSiteId" : "5000123",
    "salesOrderSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "deliverySiteId" : "5000123",
    "deliverySite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "billingSiteId" : "5000123",
    "billingSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "externalNumber" : "Salesforce",
    "expectedSignatureDate" : "2020-01-31T23:59:59Z",
    "actualSignatureDate" : "2020-02-01T00:00:00Z",
    "notified" : true,
    "contractNumber" : "contractNumber",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "notificationDate" : "2020-01-31T23:59:59Z",
    "lines" : [ {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    }, {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    } ],
    "expenseLines" : [ {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    }, {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    } ],
    "validationDate" : "2020-01-31T23:59:59Z",
    "quotationProbability" : "{}",
    "state" : "{}",
    "opportunity" : {
      "id" : "5000123",
      "code" : "OP2025",
      "name" : "ON PREMISE"
    },
    "opportunityId" : "5000123",
    "technicalManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "technicalManagerId" : "5000123",
    "durationOfValidity" : 3,
    "origin" : "{}",
    "salesManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesManagerId" : "5000123",
    "theoricalMargin" : 2.027123023002322,
    "commissionRate" : 50,
    "pipe" : {
      "id" : "5000123",
      "code" : "BIZZ",
      "name" : "Business"
    },
    "pipeId" : "5000678",
    "weightingCoefficient" : 0.85,
    "linesHierarchy" : [ {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    }, {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    } ],
    "archivingDate" : "2020-01-31T23:59:59Z",
    "archiveComment" : "Lorem ipsum",
    "archiveReason" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name"
    },
    "archiveReasonId" : "500000010",
    "eSignatureTransactions" : [ {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    }, {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    } ],
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    }
  },
  "referentialDate" : "2020-01-31T23:59:59Z"
}

2.6.19. Validate a production to be billed matching the specified ID

POST

/productions/{production_id}/validate

Description

Validate a production to be billed matching the specified ID

DMF required:
  • DMF AB0811: Api Sales / Productions To Be Billed / Validate

  • DMF 192101: Web Portal / Validate Services / Validate All Services

  • DMF 192103: Web Portal / Validate Services / Validate Services As Line Manager

  • DMF 192104: Web Portal / Validate Services / Validate Services As Project Manager

Parameters
Path Parameters
Name Description Required Default Pattern

production_id

The id of a Production To Be Billed

X

null

Responses
Table 43. http response codes
Code Message Datatype

204

Production to be billed 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.6.20. Validate productions to be billed matching the specified IDs

POST

/productions/validate

Description

Validate productions to be billed matching the specified IDs

DMF required:
  • DMF AB0811: Api Sales / Productions To Be Billed / Validate

  • DMF 192101: Web Portal / Validate Services / Validate All Services

  • DMF 192103: Web Portal / Validate Services / Validate Services As Line Manager

  • DMF 192104: Web Portal / Validate Services / Validate Services As Project Manager

Parameters
Body Parameter
Name Description Required Default Pattern

ids

Idents of the productions to be billed to validate [string]

X

Responses
Table 44. http response codes
Code Message Datatype

204

Productions to be billed 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

Samples
Body parameter
Click to expand


2.7. Quotation Expense Lines

2.7.1. Create a quotation expense line in a quotation

PUT

/quotations/{quotation_id}/expense-lines

Description

Create a quotation expense line in a quotation

DMF required:
  • DMF AB0901: Api Sales / Quotation Expense Line / Insert

  • DMF 020204: Sales / Quotations / Search

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

quotationExpenseLine

The quotation expense line to create QuotationExpenseLine

X

Content Type
  • text/plain

Responses
Table 45. http response codes
Code Message Datatype

201

The quotation expense line 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",
  "type" : "{}",
  "quotationLine" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  },
  "quotationLineId" : "5000123",
  "quotationId" : "5000123",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "employeeId" : "5000123",
  "supplier" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "supplierId" : "5000123",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "purchasedProduct" : {
    "id" : "5000123",
    "reference" : "ENGLISH",
    "grouping" : "LICENCE",
    "family" : "FML-LICENCE",
    "subFamily" : "RECCURENT",
    "category" : {
      "id" : "5000123",
      "code" : "LANG",
      "name" : "Language",
      "endDate" : "2000-06-21",
      "companyCode" : "AKSAS",
      "type" : "{}",
      "grouping" : "grouping",
      "ranking" : 5
    },
    "categoryId" : "10024",
    "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" : 5,
      "subCategoryType" : "{}"
    },
    "subCategoryId" : "11037",
    "companyCode" : "AKSAS",
    "entityCode" : "Lyon",
    "shortName" : "Maint",
    "name" : "Maintenance",
    "inventory" : true,
    "comment" : "Lorem ipsum",
    "billingMode" : "{}",
    "quantityPrecision" : 2,
    "unitPricePrecision" : 3,
    "productionEstimatedDuration" : 30,
    "inventoryAndPackaging" : {
      "packagingType" : "Warehouse",
      "packagingUnit" : 12
    },
    "customData" : {
      "key" : {
        "type" : "{}",
        "value" : "Autoref 010520",
        "name" : "Reference 4",
        "realOrder" : 0,
        "label" : "REFERENCE_4"
      }
    },
    "accountSettings" : {
      "localCostAccount" : "411000",
      "localGroupAccount" : "411000",
      "localSubscriptionAccount" : "411000",
      "localInternalAccount" : "411000",
      "intraComCostAccount" : "411000",
      "intraComGroupAccount" : "411000",
      "intraComSubscriptionAccount" : "411000",
      "intraComInternalAccount" : "411000",
      "exportCostAccount" : "411000",
      "exportGroupAccount" : "411000",
      "toBeEstablishedAccount" : "411000",
      "vatCode" : "1",
      "reverseVAT" : true,
      "disabledDate" : "2000-06-21",
      "marketEndDate" : "2000-06-21"
    }
  },
  "purchasedProductId" : "purchasedProductId",
  "actionCode" : {
    "id" : "5000123",
    "name" : "ADD"
  },
  "actionCodeId" : "5000123",
  "label" : "Facturation modules Akuiteo",
  "text" : "Texte",
  "quantity" : 10,
  "unitCost" : 100,
  "coefficient" : 2,
  "totalCost" : 1000,
  "totalCostCompanyCurrencyDevise" : 1000,
  "purchaseCost" : 2000,
  "laborDuration" : 1000,
  "laborCost" : 1000,
  "otherCosts" : 600,
  "project" : {
    "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" : "{}"
  },
  "projectId" : "5000123",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "5000123",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "expectedDate" : "2020-01-23T04:56:07Z",
  "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" : 0.9156852,
  "startPeriod" : "2020-01-23T04:56:07Z",
  "endPeriod" : "2020-01-23T04:56:07Z",
  "isGroup" : true,
  "isInternal" : true,
  "isGenerated" : true,
  "isAutoGenerated" : true,
  "ranking" : 2,
  "scheduledInformation" : {
    "totalDuration" : 10.5
  },
  "action" : "{}"
}

2.7.2. Delete a quotation expense line in a quotation

DELETE

/quotations/{quotation_id}/expense-lines/{quotation_expense_line_id}

Description

Delete a quotation expense line in a quotation.

DMF required:
  • DMF AB0903: Api Sales / Quotation Expense Line / Delete

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

quotation_expense_line_id

The id of the quotation expense line

X

null

Responses
Table 46. http response codes
Code Message Datatype

204

The quotation expense has been deleted in the quotation

<<>>

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. Search quotation expense lines by quotation Id

GET

/quotations/{quotation_id}/expense-lines

Description

Get all quotation expense lines in a quotation.

DMF required:
  • DMF AB0906: Api Sales / Quotation Expense Line / Info

  • DMF 020204: Sales / Quotations / Search

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Content Type
  • application/json

Responses
Table 47. http response codes
Code Message Datatype

200

Quotation expense lines successfully loaded

List[QuotationExpenseLine]

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.4. Mark quotation expense lines as not generated

POST

/quotations/{quotation_id}/expense-lines/mark-not-generated

Description

Marks the selected quotation expense lines as 'not generated.'
The boolean field 'isGenerated' of the specified quotation expense lines will automatically be set to false.
Only quotation expense lines with the type set to SERVICE_PROVIDER can be marked as 'not generated.'
The result includes the list of IDs for quotation expense lines that were successfully marked as 'not generated' as well as any that failed.
The schedules already generated are not deleted from the database.

DMF required:
  • DMF AB0132: Api Sales / Quotations / Mark As Not Generated

  • DMF 020220: Sales / Quotations / Mark Cost Lines As Not Generated

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

batch_parameter

Contains the IDs of the quotation expense lines to be marked as 'not generated' BatchParameter

X

Content Type
  • application/json

Responses
Table 48. http response codes
Code Message Datatype

200

Batch processing completed Quotation expense lines were marked as 'not generated,' with details of successes and failures.

ManagementObjectBatchResult

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

{
  "ids" : [ "ids", "ids" ]
}

2.7.5. Patch a quotation expense line

PATCH

/quotations/{quotation_id}/expense-lines/{quotation_expense_line_id}

Description

Patch a quotation expense line in a quotation matching the specified ID and using the list of parameters below.

DMF required:
  • DMF AB0902: Api Sales / Quotation Expense Line / Update

  • DMF 020204: Sales / Quotations / Search

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

quotation_expense_line_id

The id of the quotation expense line

X

null

Body Parameter
Name Description Required Default Pattern

patch_elements

List of patches to apply PatchElement

-

Content Type
  • text/plain

Responses
Table 49. http response codes
Code Message Datatype

200

The quotation expense line has been 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.6. Read quotation expense lines in a quotation with read options

POST

/quotations/{quotation_id}/expense-lines/read

Description

Read quotation expense lines, with additionnal information of your choice.
You can add this information with Read Options.

DMF required:
  • DMF AB0906: Api Sales / Quotation Expense Line / Info

  • DMF 020204: Sales / Quotations / Search

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for return quotation exepenses QuotationExpenseReadOption QuotationExpenseLineReadOption

-

Content Type
  • application/json

Responses
Table 50. http response codes
Code Message Datatype

200

Quotation expense lines successfully loaded

List[QuotationExpenseLine]

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" : [ "EMPLOYEE", "EMPLOYEE" ]
}

2.7.7. Search quotation expense lines with search criteria

POST

/quotations/{quotation_id}/expense-lines/search

Description

Search quotation expense lines with search criteria.

DMF required:
  • DMF AB0904: Api Sales / Quotation Expense Line / Search

  • DMF 020204: Sales / Quotations / Search

  • DMF 020236: Sales / Quotations / Modify Cost Lines

  • DMF 0202__: Sales / Quotations

  • DMF 020202: Sales / Quotations / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

QuotationExpenseLineCriteria

Search criteria QuotationExpenseLineCriteria. QuotationExpenseLineCriteria

X

Content Type
  • application/json

Responses
Table 51. http response codes
Code Message Datatype

200

Quotation expense lines successfully loaded

List[QuotationExpenseLine]

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" : "*"
  },
  "type" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationLineId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "quotationId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "employeeId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "supplierId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "EMPLOYEE", "EMPLOYEE" ]
  }
}

2.7.8. Update a quotation expense line in a quotation

POST

/quotations/{quotation_id}/expense-lines/{quotation_expense_line_id}

Description

Update a quotation expense line in a quotation.

DMF required:
  • DMF AB0902: Api Sales / Quotation Expense Line / Update

  • DMF 020204: Sales / Quotations / Search

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020236: Sales / Quotations / Modify Cost Lines

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

quotation_expense_line_id

The id of the quotation expense line

X

null

Body Parameter
Name Description Required Default Pattern

quotationExpenseLine

The quotation expense line to be updated QuotationExpenseLine

X

Content Type
  • text/plain

Responses
Table 52. http response codes
Code Message Datatype

201

The quotation expense line 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",
  "type" : "{}",
  "quotationLine" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  },
  "quotationLineId" : "5000123",
  "quotationId" : "5000123",
  "employee" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "employeeId" : "5000123",
  "supplier" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "supplierId" : "5000123",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "purchasedProduct" : {
    "id" : "5000123",
    "reference" : "ENGLISH",
    "grouping" : "LICENCE",
    "family" : "FML-LICENCE",
    "subFamily" : "RECCURENT",
    "category" : {
      "id" : "5000123",
      "code" : "LANG",
      "name" : "Language",
      "endDate" : "2000-06-21",
      "companyCode" : "AKSAS",
      "type" : "{}",
      "grouping" : "grouping",
      "ranking" : 5
    },
    "categoryId" : "10024",
    "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" : 5,
      "subCategoryType" : "{}"
    },
    "subCategoryId" : "11037",
    "companyCode" : "AKSAS",
    "entityCode" : "Lyon",
    "shortName" : "Maint",
    "name" : "Maintenance",
    "inventory" : true,
    "comment" : "Lorem ipsum",
    "billingMode" : "{}",
    "quantityPrecision" : 2,
    "unitPricePrecision" : 3,
    "productionEstimatedDuration" : 30,
    "inventoryAndPackaging" : {
      "packagingType" : "Warehouse",
      "packagingUnit" : 12
    },
    "customData" : {
      "key" : {
        "type" : "{}",
        "value" : "Autoref 010520",
        "name" : "Reference 4",
        "realOrder" : 0,
        "label" : "REFERENCE_4"
      }
    },
    "accountSettings" : {
      "localCostAccount" : "411000",
      "localGroupAccount" : "411000",
      "localSubscriptionAccount" : "411000",
      "localInternalAccount" : "411000",
      "intraComCostAccount" : "411000",
      "intraComGroupAccount" : "411000",
      "intraComSubscriptionAccount" : "411000",
      "intraComInternalAccount" : "411000",
      "exportCostAccount" : "411000",
      "exportGroupAccount" : "411000",
      "toBeEstablishedAccount" : "411000",
      "vatCode" : "1",
      "reverseVAT" : true,
      "disabledDate" : "2000-06-21",
      "marketEndDate" : "2000-06-21"
    }
  },
  "purchasedProductId" : "purchasedProductId",
  "actionCode" : {
    "id" : "5000123",
    "name" : "ADD"
  },
  "actionCodeId" : "5000123",
  "label" : "Facturation modules Akuiteo",
  "text" : "Texte",
  "quantity" : 10,
  "unitCost" : 100,
  "coefficient" : 2,
  "totalCost" : 1000,
  "totalCostCompanyCurrencyDevise" : 1000,
  "purchaseCost" : 2000,
  "laborDuration" : 1000,
  "laborCost" : 1000,
  "otherCosts" : 600,
  "project" : {
    "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" : "{}"
  },
  "projectId" : "5000123",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "5000123",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "expectedDate" : "2020-01-23T04:56:07Z",
  "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" : 0.9156852,
  "startPeriod" : "2020-01-23T04:56:07Z",
  "endPeriod" : "2020-01-23T04:56:07Z",
  "isGroup" : true,
  "isInternal" : true,
  "isGenerated" : true,
  "isAutoGenerated" : true,
  "ranking" : 2,
  "scheduledInformation" : {
    "totalDuration" : 10.5
  },
  "action" : "{}"
}

2.8. Quotations

2.8.1. Archive a quotation

POST

/quotations/{quotation_id}/archive

Description

Archive a quotation. The state will be set to ARCHIVED.
It is not possible to archive a draft quotation.

DMF required:
  • DMF AB0115: Api Sales / Quotations / Archive An Unsigned Quotation

  • DMF 020223: Sales / Quotations / Archive

  • DMF 020246: Sales / Quotations / Archive Service Quotation

Or
  • DMF AB0119: Api Sales / Quotations / Archive A Signed Quotation

  • DMF 020235: Sales / Quotations / Archive Signed Quotation

  • DMF 020235: Sales / Quotations / Archive Signed Quotation

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

archive_quotation

The reason for archiving the quotation ArchiveArgument ArchiveArgument

X

Responses
Table 53. http response codes
Code Message Datatype

204

The quotation has been archived

<<>>

404

There is no quotation 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

{
  "reasonId" : "5000152",
  "comment" : "Lorem ipnum"
}

2.8.2. Ask for a e-signature on a quotation

POST

/quotations/{quotation_id}/ask-esign

Description

Ask for an electronic signature on a quotation.
The quotation must be validated before asking for the electronic signature.

DMF required:
  • DMF AB0127: Api Sales / Quotations / Ask Esign

  • DMF 020241: Sales / Quotations / Electronic Signature

  • DMF 020234: Sales / Quotations / Modify Reviewed Quotation

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

message

The message to send ESignatureMessage

-

Responses
Table 54. http response codes
Code Message Datatype

204

Electronic signature is successfully asked on the quotation

<<>>

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

{
  "toRecipients" : [ {
    "id" : "5000123",
    "summary" : "Text",
    "address" : "jean@email.com",
    "type" : "{}"
  }, {
    "id" : "5000123",
    "summary" : "Text",
    "address" : "jean@email.com",
    "type" : "{}"
  } ],
  "publishArguments" : {
    "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
  },
  "ccRecipients" : [ {
    "id" : "5000123",
    "summary" : "Text",
    "address" : "jean@email.com",
    "type" : "{}"
  }, {
    "id" : "5000123",
    "summary" : "Text",
    "address" : "jean@email.com",
    "type" : "{}"
  } ]
}

2.8.3. Ask for approval for a quotation

POST

/quotations/{quotation_id}/approvals/ask

Description

Ask for approval for a quotation
If the status of the quotation does not allow generating the approval, the approval request will be ignored.

DMF required:
  • DMF A50101: Api Approval Process / Approvals / Insert

  • DMF 061807: Projects / Approvals / Request

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Responses
Table 55. http response codes
Code Message Datatype

204

The approval request has been successfully created

<<>>

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. Batch archive quotations

POST

/quotations/batch-archive

Description

Batch archive quotations. The state will be set to ARCHIVED.
It is not possible to archive a draft quotation.

DMF required:
  • DMF AB0120: Api Sales / Quotations / Batch Archive

  • DMF 020223: Sales / Quotations / Archive

Parameters
Body Parameter
Name Description Required Default Pattern

archiveQuotations

The parameters for archiving the quotations BatchArchiveArgumentParamHolder BatchArchiveArgumentParamHolder

X

Responses
Table 56. http response codes
Code Message Datatype

204

The quotations have been successfully archived

<<>>

404

There is no quotation 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

{
  "archiveArgument" : {
    "reasonId" : "5000152",
    "comment" : "Lorem ipnum"
  },
  "ids" : [ "ids", "ids" ]
}

2.8.5. Batch update multiple quotation lines by modifying specific fields

POST

/quotations/{quotation_id}/lines/batch-update

Description

Batch update multiple quotation lines by modifying specific fields, such as isScheduled, to mark lines as scheduled or unscheduled.
If no valid quotation line is provided, the operation will not be performed.
This API cannot be used to update all quotation line fields.

DMF required:
  • DMF AB0129: Api Sales / Quotations / Update Quotation Unsigned Order

  • DMF 020225: Sales / Quotations / Modify Unsigned Ordered Quotation

Or
  • DMF AB0130: Api Sales / Quotations / Update A Reviewed Quotation

  • DMF 020234: Sales / Quotations / Modify Reviewed Quotation

Or
  • DMF AB0116: Api Sales / Quotations / Update A Quotation To Be Approved

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

Or
  • DMF AB0117: Api Sales / Quotations / Update A Validated Quotation

  • DMF 020213: Sales / Quotations / Modify Validated Quotation

Or
  • DMF AB0121: Api Sales / Quotations / Update A Signed Quotation

  • DMF 020217: Sales / Quotations / Modify Signed Quotation

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

batch_update_details

Parameters for batch updating lines BatchUpdateQuotationLines

X

Content Type
  • application/json

Responses
Table 57. http response codes
Code Message Datatype

200

Batch processing completed Quotation lines updated with details of successes and failures.

ManagementObjectBatchResult

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

{
  "ids" : [ "ids", "ids" ],
  "isScheduled" : true
}

2.8.6. Batch validate quotations

POST

/quotations/batch-validate

Description

Validate all quotations matching the specified IDs in the parameter.
The validation date of the quotation will be set with the current date and the state will be set with VALIDATED.
Warning: Validation is not possible on a unapproval quotation, the approval date can’t be null.

DMF required:
  • DMF AB0114: Api Sales / Quotations / Validate

  • DMF 020208: Sales / Quotations / Validate

Parameters
Body Parameter
Name Description Required Default Pattern

quotationIds

Quotation Ids to validate. StringsParamHolder

X

Content Type
  • application/json

Responses
Table 58. http response codes
Code Message Datatype

200

List of Quotation successfully validated

ManagementObjectBatchResult

400

Validation is not possible on a unapproval quotation

<<>>

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" : [ "value", "value" ]
}

2.8.7. Change the customer to bill in a quotation

POST

/quotations/{quotation_id}/change-customer-to-bill

Description

Change the customer to bill in a quotation.
The customer to bill must be linked to the main customer of the quotation.
If the customer to bill is exempt from VAT, the VAT will be excluded from the lines in this quotation.

DMF required:
  • DMF AB0124: Api Sales / Quotations / Change Customer To Bill

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

  • DMF 020213: Sales / Quotations / Modify Validated Quotation

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

customerToBillId

The ID of the customer to bill StringParamHolder

X

Responses
Table 59. http response codes
Code Message Datatype

204

The customer to bill has been successfully updated in the quotation

<<>>

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.8.8. Change a recipient type of a contact in a quotation

POST

/quotations/{quotation_id}/recipient-contacts/{recipient_contact_id}

Description

Change a recipient type of a contact in a quotation

DMF required:
  • DMF AB0191: Api Sales / Quotations / Contact Recipient

  • DMF 020106: Sales / Customer / Contacts

  • DMF 0202__: Sales / Quotations

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

recipient_contact_id

The Id of the recipient contact

X

null

Body Parameter
Name Description Required Default Pattern

recipientType

A recipient type of the contact StringParamHolder

X

Responses
Table 60. http response codes
Code Message Datatype

204

The recipient type has 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

{
  "value" : "true"
}

2.8.9. Convert a quotation into a sales order

POST

/quotations/{quotation_id}/convert

Description

Convert a quotation to a sales order
Only validated quotations can be converted into a sales order
If you want to keep the quotation as a 'signed quotation' you need to fill the signature date into the body.
Otherwise, the quotation will be kept as an 'unsigned quotation converted into a sales order'.

DMF required:
  • DMF AB0113: Api Sales / Quotations / Convert A Quotation Into A Sales Order

  • DMF 020319: Sales / Sales Orders / Turn Quotation Into Sales Order

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

quotationEffectiveSignature

The quotation effective signature date when converting a quotation into a sales order. DateParamHolder

-

Content Type
  • text/plain

Responses
Table 61. http response codes
Code Message Datatype

200

The quotation has been successfully converted into a sales order. The id returned is the number of the sales order.

[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

{
  "date" : "2000-01-23T04:56:07.000+00:00"
}

2.8.10. Create a quotation

PUT

/quotations

Description

Create a quotation using the list of parameters below

DMF required:
  • DMF AB0101: Api Sales / Quotations / Create

  • DMF 020201: Sales / Quotations / New

  • DMF 0202__: Sales / Quotations

Parameters
Body Parameter
Name Description Required Default Pattern

quotation

The quotation to create Quotation

X

Content Type
  • text/plain

Responses
Table 62. http response codes
Code Message Datatype

200

Quotation 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",
  "project" : {
    "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" : "{}"
  },
  "projectId" : "PRJT_001",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "51000122",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "number" : "CC00001",
  "name" : "Label for my doc",
  "type" : "{}",
  "companyCode" : "AKSAS",
  "companyId" : "5000123",
  "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"
  },
  "date" : "2000-06-21T04:56:07.000+00:00",
  "description" : "Lorem ipsum",
  "entityCode" : "Lyon",
  "afterTaxAmount" : 120.37,
  "preTaxAmount" : 100.14,
  "thirdPartyId" : "CUSTOMER01",
  "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"
  },
  "approvalState" : "{}",
  "approvalDate" : "2000-06-21T04:56:07.000+00:00",
  "exchangeRate" : 10.26,
  "thirdPartyToBillId" : "CUSTOMER02",
  "manager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "managerId" : "5000123",
  "payment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "End of month",
    "day" : 10
  },
  "conditionOfPayment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "1",
    "day" : 10
  },
  "methodOfPayment" : "{}",
  "fiscalYear" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "journalEntryNumberingId" : "5000123"
  },
  "fiscalYearId" : "5000123",
  "accountingJournal" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "startDate" : "2000-06-21",
    "endDate" : "2000-06-21",
    "miscellaneousTransactionsProhibited" : true,
    "excludedByDefault" : true
  },
  "accountingJournalId" : "1203",
  "internal" : true,
  "group" : true,
  "assignmentIndicator" : "{}",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "afterTaxAmountCurrency" : 1500,
  "preTaxAmountCurrency" : 100.14,
  "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
  },
  "reference1" : "CUSTOM_REF_1",
  "reference2" : "CUSTOM_REF_2",
  "reference3" : "CUSTOM_REF_3",
  "customer" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerId" : "5000123",
  "customerToBill" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerToBillId" : "5000123",
  "objectHistoryLinks" : [ {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  }, {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  } ],
  "chorusProperties" : {
    "serviceCode" : "Z-FDJ-CA",
    "serviceName" : "SCA",
    "contractNumber" : "5000123",
    "commitmentNumber" : "5000123",
    "marketName" : "Lorem ipsum",
    "effectiveDate" : "2020-01-31T23:59:59Z"
  },
  "customerDate" : "2020-01-31T23:59:59Z",
  "entity" : {
    "id" : "5000123",
    "code" : "01-BRDX",
    "name" : "Bordeaux"
  },
  "entityId" : "5000123",
  "titleLines" : [ {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  }, {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  } ],
  "salesOrderSiteId" : "5000123",
  "salesOrderSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "deliverySiteId" : "5000123",
  "deliverySite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "billingSiteId" : "5000123",
  "billingSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "externalNumber" : "Salesforce",
  "expectedSignatureDate" : "2020-01-31T23:59:59Z",
  "actualSignatureDate" : "2020-02-01T00:00:00Z",
  "notified" : true,
  "contractNumber" : "contractNumber",
  "periodicity" : {
    "id" : "5000123",
    "code" : "{}",
    "duration" : 3,
    "term" : true,
    "tacitAgrement" : true,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "lineStartDate" : "2020-01-23T04:56:07Z"
  },
  "edited" : true,
  "notificationDate" : "2020-01-31T23:59:59Z",
  "lines" : [ {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  }, {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  } ],
  "expenseLines" : [ {
    "id" : "5000123",
    "type" : "{}",
    "quotationLine" : {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    },
    "quotationLineId" : "5000123",
    "quotationId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "supplier" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "supplierId" : "5000123",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "purchasedProduct" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "purchasedProductId" : "purchasedProductId",
    "actionCode" : {
      "id" : "5000123",
      "name" : "ADD"
    },
    "actionCodeId" : "5000123",
    "label" : "Facturation modules Akuiteo",
    "text" : "Texte",
    "quantity" : 10,
    "unitCost" : 100,
    "coefficient" : 2,
    "totalCost" : 1000,
    "totalCostCompanyCurrencyDevise" : 1000,
    "purchaseCost" : 2000,
    "laborDuration" : 1000,
    "laborCost" : 1000,
    "otherCosts" : 600,
    "project" : {
      "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" : "{}"
    },
    "projectId" : "5000123",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "expectedDate" : "2020-01-23T04:56:07Z",
    "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" : 0.9156852,
    "startPeriod" : "2020-01-23T04:56:07Z",
    "endPeriod" : "2020-01-23T04:56:07Z",
    "isGroup" : true,
    "isInternal" : true,
    "isGenerated" : true,
    "isAutoGenerated" : true,
    "ranking" : 2,
    "scheduledInformation" : {
      "totalDuration" : 10.5
    },
    "action" : "{}"
  }, {
    "id" : "5000123",
    "type" : "{}",
    "quotationLine" : {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    },
    "quotationLineId" : "5000123",
    "quotationId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "supplier" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "supplierId" : "5000123",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "purchasedProduct" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "purchasedProductId" : "purchasedProductId",
    "actionCode" : {
      "id" : "5000123",
      "name" : "ADD"
    },
    "actionCodeId" : "5000123",
    "label" : "Facturation modules Akuiteo",
    "text" : "Texte",
    "quantity" : 10,
    "unitCost" : 100,
    "coefficient" : 2,
    "totalCost" : 1000,
    "totalCostCompanyCurrencyDevise" : 1000,
    "purchaseCost" : 2000,
    "laborDuration" : 1000,
    "laborCost" : 1000,
    "otherCosts" : 600,
    "project" : {
      "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" : "{}"
    },
    "projectId" : "5000123",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "expectedDate" : "2020-01-23T04:56:07Z",
    "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" : 0.9156852,
    "startPeriod" : "2020-01-23T04:56:07Z",
    "endPeriod" : "2020-01-23T04:56:07Z",
    "isGroup" : true,
    "isInternal" : true,
    "isGenerated" : true,
    "isAutoGenerated" : true,
    "ranking" : 2,
    "scheduledInformation" : {
      "totalDuration" : 10.5
    },
    "action" : "{}"
  } ],
  "validationDate" : "2020-01-31T23:59:59Z",
  "quotationProbability" : "{}",
  "state" : "{}",
  "opportunity" : {
    "id" : "5000123",
    "code" : "OP2025",
    "name" : "ON PREMISE"
  },
  "opportunityId" : "5000123",
  "technicalManager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "technicalManagerId" : "5000123",
  "durationOfValidity" : 3,
  "origin" : "{}",
  "salesManager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "salesManagerId" : "5000123",
  "theoricalMargin" : 2.027123023002322,
  "commissionRate" : 50,
  "pipe" : {
    "id" : "5000123",
    "code" : "BIZZ",
    "name" : "Business"
  },
  "pipeId" : "5000678",
  "weightingCoefficient" : 0.85,
  "linesHierarchy" : [ {
    "id" : "5009552",
    "linesHierarchy" : [ null, null ],
    "elementType" : "{}",
    "ranking" : 7,
    "action" : "{}"
  }, {
    "id" : "5009552",
    "linesHierarchy" : [ null, null ],
    "elementType" : "{}",
    "ranking" : 7,
    "action" : "{}"
  } ],
  "archivingDate" : "2020-01-31T23:59:59Z",
  "archiveComment" : "Lorem ipsum",
  "archiveReason" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name"
  },
  "archiveReasonId" : "500000010",
  "eSignatureTransactions" : [ {
    "id" : "5000123",
    "daysSpent" : 240,
    "date" : "2024-11-23T04:56:07Z",
    "status" : "{}",
    "requesterId" : "5000123",
    "signatoryId" : "500012",
    "signatoryType" : "{}",
    "signatoryEmail" : "user@email.com",
    "signatureStatus" : "{}",
    "signatureDate" : "2024-11-23T04:56:07Z",
    "rejectionReason" : "Lorem ipsum",
    "ranking" : 2
  }, {
    "id" : "5000123",
    "daysSpent" : 240,
    "date" : "2024-11-23T04:56:07Z",
    "status" : "{}",
    "requesterId" : "5000123",
    "signatoryId" : "500012",
    "signatoryType" : "{}",
    "signatoryEmail" : "user@email.com",
    "signatureStatus" : "{}",
    "signatureDate" : "2024-11-23T04:56:07Z",
    "rejectionReason" : "Lorem ipsum",
    "ranking" : 2
  } ],
  "recurringAmount" : {
    "afterTaxAmount" : 1440,
    "preTaxAmount" : 1200,
    "afterTaxAmountCurrency" : 1440,
    "preTaxAmountCurrency" : 1200,
    "vatAmount" : 240,
    "vatAmountCurrency" : 240
  }
}

2.8.11. Add a recipient contact in a quotation

PUT

/quotations/{quotation_id}/recipient-contacts

Description

Add a recipient contact in a quotation

DMF required:
  • DMF AB0191: Api Sales / Quotations / Contact Recipient

  • DMF 020106: Sales / Customer / Contacts

  • DMF 0202__: Sales / Quotations

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

recipientContacts

A recipient contact to add RecipientContact

X

Content Type
  • text/plain

Responses
Table 63. http response codes
Code Message Datatype

201

The recipient contact has been successfully added.

[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",
  "contactId" : "5000023",
  "type" : "{}",
  "companyId" : "5000123",
  "name" : "Doe",
  "firstName" : "John",
  "title" : "Mr",
  "email" : "email@email.com"
}

2.8.12. Delete a quotation

DELETE

/quotations/{quotation_id}

Description

Delete a quotation

DMF required:
  • DMF AB0103: Api Sales / Quotations / Delete

  • DMF 020203: Sales / Quotations / Delete

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Responses
Table 64. http response codes
Code Message Datatype

204

Quotation has been 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.8.13. Delete a recipient contact in a quotation

DELETE

/quotations/{quotation_id}/recipient-contacts/{recipient_contact_id}

Description

Delete a recipient contact in a quotation

DMF required:
  • DMF AB0191: Api Sales / Quotations / Contact Recipient

  • DMF 020106: Sales / Customer / Contacts

  • DMF 0202__: Sales / Quotations

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

recipient_contact_id

The Id of the recipient contact

X

null

Responses
Table 65. http response codes
Code Message Datatype

204

The recipient contact has been 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.8.14. Generate expenses on a quotation

POST

/quotations/{quotation_id}/generate-expenses

Description

Generate expenses on a quotation

DMF required:
  • DMF AB0111: Api Sales / Quotations / Generate Expenses

  • DMF 020202: Sales / Quotations / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Responses
Table 66. http response codes
Code Message Datatype

204

Expenses successfully generated

<<>>

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.15. Generate a quotation schedule based on expense lines

POST

/quotations/{quotation_id}/schedule-expense-lines

Description

Generate the quotation schedule based on expense lines.
This API returns the IDs of the expense lines whose scheduling generation was successfully launched.

DMF required:
  • DMF AB0123: Api Sales / Quotations / Generate Schedule

  • DMF 020222: Sales / Quotations / Generate Schedules

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

ids

IDs of quotation expense lines from which the schedule is to be generated StringsParamHolder

X

Content Type
  • application/json

Responses
Table 67. http response codes
Code Message Datatype

200

Quotation schedule has been successfully generated

List[[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

{
  "value" : [ "value", "value" ]
}

2.8.16. Generate the quotation schedule from quotation lines.

POST

/quotations/{quotation_id}/lines/generate-schedule

Description

Generate the quotation schedule from quotation lines.
A new schedule will not be generated for quotation lines already marked as scheduled.
Schedule generation will not occur if at least one quotation expense line is present in the quotation.
Schedule generation will not occur for signed quotations.
Schedule generation will not occur if quotation lines have a billing mode set to PRODUCTION_TO_BE_BILLED, unless the dedicated driver is enabled.
If no valid quotation lines are provided, the operation will not proceed.

DMF required:
  • DMF AB0192: Api Sales / Quotations / Generate Schedule From Quotation

  • DMF 020211: Sales / Quotations / Schedule

  • DMF 020320: Sales / Sales Orders / Schedule

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

batch_parameter

Contains the IDs of quotation lines from which the schedule is to be generated BatchParameter

X

Content Type
  • application/json

Responses
Table 68. http response codes
Code Message Datatype

200

Quotation schedule has been successfully generated.

ManagementObjectBatchResult

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

{
  "ids" : [ "ids", "ids" ]
}

2.8.17. Get all recipient contacts in a quotation

GET

/quotations/{quotation_id}/recipient-contacts

Description

Get all recipient contacts in a quotation.

DMF required:
  • DMF AB0191: Api Sales / Quotations / Contact Recipient

  • DMF 020106: Sales / Customer / Contacts

  • DMF 0202__: Sales / Quotations

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Content Type
  • application/json

Responses
Table 69. http response codes
Code Message Datatype

200

The recipient contacts have been successfully loaded.

List[RecipientContact]

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.18. Search a quotation by its ID

GET

/quotations/{quotation_id}

Description

Get the quotation matching the specified ID.

DMF required:
  • DMF AB0106: Api Sales / Quotations / Info

  • DMF 0202__: Sales / Quotations

  • DMF 020204: Sales / Quotations / Search

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Content Type
  • application/json

Responses
Table 70. http response codes
Code Message Datatype

200

Quotation successfully loaded

Quotation

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.19. Get a recipient contact in a quotation

GET

/quotations/{quotation_id}/recipient-contacts/{recipient_contact_id}

Description

Get a recipient contact in a quotation .

DMF required:
  • DMF AB0191: Api Sales / Quotations / Contact Recipient

  • DMF 020106: Sales / Customer / Contacts

  • DMF 0202__: Sales / Quotations

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

recipient_contact_id

The Id of the recipient contact

X

null

Content Type
  • application/json

Responses
Table 71. http response codes
Code Message Datatype

200

The recipient contact has been successfully loaded.

RecipientContact

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.20. Patch a quotation

PATCH

/quotations/{quotation_id}

Description

Patch the quotation matching the specified ID and using the list of parameters below.

DMF required:
  • DMF AB0110: Api Sales / Quotations / Update

  • DMF 020202: Sales / Quotations / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

patch_elements

List of patches to apply PatchElement

-

Content Type
  • text/plain

Responses
Table 72. http response codes
Code Message Datatype

200

Quotation successfully patched

[String]

404

There is no Quotation

<<>>

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.8.21. Pre-fill a quotation

POST

/quotations/pre-fill

Description

Pre-fill a quotation using either an existing quotation (clone) or a source object (e.g., an opportunity).
Depending on the selected pre-fill action (preFillAction), the quotation can be:
Cloned from another quotation (some fields may be left empty intentionally).
Initialized from a source object, such as an opportunity, using relevant data to pre-fillthe new quotation.

DMF required:
  • DMF AB0101: Api Sales / Quotations / Create

  • DMF 020201: Sales / Quotations / New

  • DMF 0202__: Sales / Quotations

Parameters
Body Parameter
Name Description Required Default Pattern

quotationPreFillParamHolder

The parameters to pre-fill a quotation QuotationPreFillParamHolder

-

Content Type
  • application/json

Responses
Table 73. http response codes
Code Message Datatype

200

The quotation has been successfully pre-filled

Quotation

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

{
  "quotationCloningOptions" : {
    "duplicateExpenseLines" : false,
    "duplicateSchedule" : false
  },
  "sourceObjectId" : "5000123",
  "quotation" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "number" : "CC00001",
    "name" : "Label for my doc",
    "type" : "{}",
    "companyCode" : "AKSAS",
    "companyId" : "5000123",
    "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"
    },
    "date" : "2000-06-21T04:56:07.000+00:00",
    "description" : "Lorem ipsum",
    "entityCode" : "Lyon",
    "afterTaxAmount" : 120.37,
    "preTaxAmount" : 100.14,
    "thirdPartyId" : "CUSTOMER01",
    "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"
    },
    "approvalState" : "{}",
    "approvalDate" : "2000-06-21T04:56:07.000+00:00",
    "exchangeRate" : 10.26,
    "thirdPartyToBillId" : "CUSTOMER02",
    "manager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "managerId" : "5000123",
    "payment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "End of month",
      "day" : 10
    },
    "conditionOfPayment" : {
      "code" : "5 days End of month by bank transfer",
      "deadLine" : "5",
      "term" : "1",
      "day" : 10
    },
    "methodOfPayment" : "{}",
    "fiscalYear" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "journalEntryNumberingId" : "5000123"
    },
    "fiscalYearId" : "5000123",
    "accountingJournal" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name",
      "startDate" : "2000-06-21",
      "endDate" : "2000-06-21",
      "miscellaneousTransactionsProhibited" : true,
      "excludedByDefault" : true
    },
    "accountingJournalId" : "1203",
    "internal" : true,
    "group" : true,
    "assignmentIndicator" : "{}",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "afterTaxAmountCurrency" : 1500,
    "preTaxAmountCurrency" : 100.14,
    "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
    },
    "reference1" : "CUSTOM_REF_1",
    "reference2" : "CUSTOM_REF_2",
    "reference3" : "CUSTOM_REF_3",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "customerToBill" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerToBillId" : "5000123",
    "objectHistoryLinks" : [ {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    }, {
      "targetId" : "5000123",
      "objectId" : "5000123",
      "objectType" : "{}"
    } ],
    "chorusProperties" : {
      "serviceCode" : "Z-FDJ-CA",
      "serviceName" : "SCA",
      "contractNumber" : "5000123",
      "commitmentNumber" : "5000123",
      "marketName" : "Lorem ipsum",
      "effectiveDate" : "2020-01-31T23:59:59Z"
    },
    "customerDate" : "2020-01-31T23:59:59Z",
    "entity" : {
      "id" : "5000123",
      "code" : "01-BRDX",
      "name" : "Bordeaux"
    },
    "entityId" : "5000123",
    "titleLines" : [ {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    }, {
      "lineTitleId" : 5000123,
      "lineTitleLabel" : "Maintenance",
      "parentLineTitleId" : 5000123
    } ],
    "salesOrderSiteId" : "5000123",
    "salesOrderSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "deliverySiteId" : "5000123",
    "deliverySite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "billingSiteId" : "5000123",
    "billingSite" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Paris",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "CUST_001"
    },
    "externalNumber" : "Salesforce",
    "expectedSignatureDate" : "2020-01-31T23:59:59Z",
    "actualSignatureDate" : "2020-02-01T00:00:00Z",
    "notified" : true,
    "contractNumber" : "contractNumber",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "notificationDate" : "2020-01-31T23:59:59Z",
    "lines" : [ {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    }, {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    } ],
    "expenseLines" : [ {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    }, {
      "id" : "5000123",
      "type" : "{}",
      "quotationLine" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "managementObjectId" : "5000123",
        "name" : "Helpdesk",
        "quantity" : 3,
        "unitPriceCurrency" : 36.32,
        "unitPrice" : 40,
        "amountTotalCurrency" : 1200,
        "amountTotal" : 1200,
        "rankNumber" : 2,
        "action" : "{}",
        "complementName" : "Lorem ipsum",
        "afterTaxAmountTotalCurrency" : 1500,
        "afterTaxAmountTotal" : 1500,
        "generalAccount" : "411000",
        "totalPriceCurrency" : 1200,
        "totalPrice" : 1200,
        "additionalFreeFields" : {
          "field1" : "Free field",
          "field2" : "Free field",
          "field3" : "Free field",
          "field4" : "Free field",
          "field5" : "Free field"
        },
        "resource" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "resourceId" : "resourceId",
        "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
        },
        "forcedVat" : true,
        "vat1" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vat2" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "vatAmount1" : 120,
        "vatAmount2" : 110,
        "vatAmount1Currency" : 126.57,
        "vatAmount2Currency" : 113.26,
        "discount" : {
          "type" : "{}",
          "percentage" : 20,
          "amountCurrency" : 150.75,
          "amount" : 150.75
        },
        "item" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          }
        },
        "itemId" : "10727",
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "helpdeskProperties" : {
          "contractNumber" : "CC202005",
          "contract" : {
            "id" : "5000123",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "projectTask" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "Team building",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJT_001",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "subPhase" : {
                "id" : "5000123",
                "code" : "SB_1",
                "name" : "Sub Phase 1",
                "phase" : {
                  "id" : "5000123",
                  "code" : "PHS_1",
                  "name" : "Phase 1",
                  "project" : {
                    "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" : "{}"
                  },
                  "projectId" : "PRJ_1",
                  "order" : 1
                },
                "phaseId" : "5000123",
                "order" : 1
              },
              "subPhaseId" : "51000122",
              "customer" : {
                "id" : "5000123",
                "code" : "CA122",
                "name" : "Akuiteo"
              },
              "customerId" : "5000123",
              "order" : 2,
              "startDate" : "2000-06-21T04:56:07.000+00:00",
              "endDate" : "2000-06-21T04:56:07.000+00:00",
              "description" : "description"
            },
            "projectTaskId" : "5000123",
            "number" : "CC00001",
            "name" : "Label for my doc",
            "type" : "{}",
            "companyCode" : "AKSAS",
            "companyId" : "5000123",
            "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"
            },
            "date" : "2000-06-21T04:56:07.000+00:00",
            "description" : "Lorem ipsum",
            "entityCode" : "Lyon",
            "afterTaxAmount" : 120.37,
            "preTaxAmount" : 100.14,
            "thirdPartyId" : "CUSTOMER01",
            "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"
            },
            "approvalState" : "{}",
            "approvalDate" : "2000-06-21T04:56:07.000+00:00",
            "exchangeRate" : 10.26,
            "thirdPartyToBillId" : "CUSTOMER02",
            "manager" : {
              "id" : "5000123",
              "code" : "CASH",
              "name" : "DUPONT",
              "firstName" : "Jean",
              "action" : "{}"
            },
            "managerId" : "5000123",
            "payment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "End of month",
              "day" : 10
            },
            "conditionOfPayment" : {
              "code" : "5 days End of month by bank transfer",
              "deadLine" : "5",
              "term" : "1",
              "day" : 10
            },
            "methodOfPayment" : "{}",
            "fiscalYear" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "journalEntryNumberingId" : "5000123"
            },
            "fiscalYearId" : "5000123",
            "accountingJournal" : {
              "id" : "5000123",
              "code" : "code",
              "name" : "name",
              "startDate" : "2000-06-21",
              "endDate" : "2000-06-21",
              "miscellaneousTransactionsProhibited" : true,
              "excludedByDefault" : true
            },
            "accountingJournalId" : "1203",
            "internal" : true,
            "group" : true,
            "assignmentIndicator" : "{}",
            "pricingMethod" : {
              "id" : "5000123",
              "code" : "AKAS",
              "name" : "TARIFS AKAS"
            },
            "pricingMethodId" : "5000125",
            "afterTaxAmountCurrency" : 1500,
            "preTaxAmountCurrency" : 100.14,
            "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
            },
            "code" : "code"
          },
          "contractId" : "5000123",
          "contractVersionId" : "5000123",
          "contractCheck" : {
            "id" : "5000123",
            "name" : "A10_CHECKBOOK"
          },
          "contractCheckId" : "5000123",
          "task" : {
            "id" : "5000123",
            "number" : "1",
            "issueId" : "5000123",
            "issueNumber" : "253030000",
            "issueTitle" : "Text"
          },
          "taskId" : "5000123",
          "geographicalArea" : "EUROPE"
        },
        "billingMode" : "{}",
        "packItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "name" : "English licence",
          "entity" : {
            "id" : "5000123",
            "code" : "01-BRDX",
            "name" : "Bordeaux"
          },
          "entityId" : "5000123",
          "company" : {
            "id" : "5000123",
            "code" : "AK",
            "name" : "Akuiteo"
          },
          "companyId" : "5000123",
          "endDate" : "2029-01-23T04:56:07Z",
          "amountTotal" : 8000,
          "afterTaxAmountTotal" : 9000,
          "recurrenceOnAllPackLines" : true,
          "revisionIndexToAllPackLines" : false,
          "lines" : [ {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          }, {
            "action" : "{}",
            "soldItem" : {
              "id" : "5000123",
              "reference" : "ENGLISH",
              "grouping" : "LICENCE",
              "family" : "FML-LICENCE",
              "subFamily" : "RECCURENT",
              "category" : {
                "id" : "5000123",
                "code" : "LANG",
                "name" : "Language",
                "endDate" : "2000-06-21",
                "companyCode" : "AKSAS",
                "type" : "{}",
                "grouping" : "grouping",
                "ranking" : 5
              },
              "categoryId" : "10024",
              "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" : 5,
                "subCategoryType" : "{}"
              },
              "subCategoryId" : "11037",
              "companyCode" : "AKSAS",
              "entityCode" : "Lyon",
              "shortName" : "Maint",
              "name" : "Maintenance",
              "inventory" : true,
              "comment" : "Lorem ipsum",
              "billingMode" : "{}",
              "quantityPrecision" : 2,
              "unitPricePrecision" : 3,
              "productionEstimatedDuration" : 30,
              "inventoryAndPackaging" : {
                "packagingType" : "Warehouse",
                "packagingUnit" : 12
              },
              "customData" : {
                "key" : {
                  "type" : "{}",
                  "value" : "Autoref 010520",
                  "name" : "Reference 4",
                  "realOrder" : 0,
                  "label" : "REFERENCE_4"
                }
              },
              "accountSettings" : {
                "localCostAccount" : "411000",
                "localGroupAccount" : "411000",
                "localSubscriptionAccount" : "411000",
                "localInternalAccount" : "411000",
                "intraComCostAccount" : "411000",
                "intraComGroupAccount" : "411000",
                "intraComSubscriptionAccount" : "411000",
                "intraComInternalAccount" : "411000",
                "exportCostAccount" : "411000",
                "exportGroupAccount" : "411000",
                "toBeEstablishedAccount" : "411000",
                "vatCode" : "1",
                "reverseVAT" : true,
                "disabledDate" : "2000-06-21",
                "marketEndDate" : "2000-06-21"
              },
              "productionInformations" : {
                "linkedToAdvancePayments" : true,
                "targetDay" : 22,
                "billingTargetDay" : 5,
                "estimatedDuration" : 240,
                "defaultDisplay" : false,
                "team" : {
                  "id" : "5000123",
                  "code" : "PRD",
                  "name" : "PROD"
                },
                "teamId" : "5000123"
              },
              "automaticTitle" : "IT PRODUCT"
            },
            "soldItemId" : "5000124",
            "itemId" : "5000126",
            "quantity" : 30,
            "unitPrice" : 400,
            "vat" : {
              "id" : "5000123",
              "code" : "7",
              "rate" : 1.4658129805029452
            },
            "totalPrice" : 7000,
            "afterTaxAmountTotal" : 8400,
            "ranking" : 2
          } ]
        },
        "packItemId" : "10727",
        "lineTitleRattachId" : "5000123",
        "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
        "notPublishable" : false,
        "percentDiscount" : 3.616076749251911,
        "amountDiscount" : 50,
        "projectedBillingDate" : "2020-01-31T23:59:59Z",
        "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
        "estimatedBillingDate" : "2020-01-31T23:59:59Z",
        "contractNumber" : "CC2017_HDI",
        "periodicity" : {
          "id" : "5000123",
          "code" : "{}",
          "duration" : 3,
          "term" : true,
          "tacitAgrement" : true,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "lineStartDate" : "2020-01-23T04:56:07Z"
        },
        "edited" : true,
        "salesPerson" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "salesPersonId" : "5000123",
        "notificationDate" : "2020-01-31T23:59:59Z",
        "notificationComment" : "Lorem ipsum",
        "productionTargetDay" : 22,
        "productionBillingTargetDay" : 5,
        "productionEstimatedDuration" : 240,
        "productionLinkedToAdvancePayments" : true,
        "productionTeam" : {
          "id" : "5000123",
          "code" : "PRD",
          "name" : "PROD"
        },
        "productionTeamId" : "5000123",
        "contractDate" : "2020-01-23T04:56:07Z",
        "isScheduled" : true,
        "recurringAmount" : {
          "afterTaxAmount" : 1440,
          "preTaxAmount" : 1200,
          "afterTaxAmountCurrency" : 1440,
          "preTaxAmountCurrency" : 1200,
          "vatAmount" : 240,
          "vatAmountCurrency" : 240
        },
        "scheduledInformation" : {
          "totalDuration" : 10.5
        }
      },
      "quotationLineId" : "5000123",
      "quotationId" : "5000123",
      "employee" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "employeeId" : "5000123",
      "supplier" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "supplierId" : "5000123",
      "pricingMethod" : {
        "id" : "5000123",
        "code" : "AKAS",
        "name" : "TARIFS AKAS"
      },
      "pricingMethodId" : "5000125",
      "purchasedProduct" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "purchasedProductId" : "purchasedProductId",
      "actionCode" : {
        "id" : "5000123",
        "name" : "ADD"
      },
      "actionCodeId" : "5000123",
      "label" : "Facturation modules Akuiteo",
      "text" : "Texte",
      "quantity" : 10,
      "unitCost" : 100,
      "coefficient" : 2,
      "totalCost" : 1000,
      "totalCostCompanyCurrencyDevise" : 1000,
      "purchaseCost" : 2000,
      "laborDuration" : 1000,
      "laborCost" : 1000,
      "otherCosts" : 600,
      "project" : {
        "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" : "{}"
      },
      "projectId" : "5000123",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "5000123",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "expectedDate" : "2020-01-23T04:56:07Z",
      "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" : 0.9156852,
      "startPeriod" : "2020-01-23T04:56:07Z",
      "endPeriod" : "2020-01-23T04:56:07Z",
      "isGroup" : true,
      "isInternal" : true,
      "isGenerated" : true,
      "isAutoGenerated" : true,
      "ranking" : 2,
      "scheduledInformation" : {
        "totalDuration" : 10.5
      },
      "action" : "{}"
    } ],
    "validationDate" : "2020-01-31T23:59:59Z",
    "quotationProbability" : "{}",
    "state" : "{}",
    "opportunity" : {
      "id" : "5000123",
      "code" : "OP2025",
      "name" : "ON PREMISE"
    },
    "opportunityId" : "5000123",
    "technicalManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "technicalManagerId" : "5000123",
    "durationOfValidity" : 3,
    "origin" : "{}",
    "salesManager" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesManagerId" : "5000123",
    "theoricalMargin" : 2.027123023002322,
    "commissionRate" : 50,
    "pipe" : {
      "id" : "5000123",
      "code" : "BIZZ",
      "name" : "Business"
    },
    "pipeId" : "5000678",
    "weightingCoefficient" : 0.85,
    "linesHierarchy" : [ {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    }, {
      "id" : "5009552",
      "linesHierarchy" : [ null, null ],
      "elementType" : "{}",
      "ranking" : 7,
      "action" : "{}"
    } ],
    "archivingDate" : "2020-01-31T23:59:59Z",
    "archiveComment" : "Lorem ipsum",
    "archiveReason" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "name"
    },
    "archiveReasonId" : "500000010",
    "eSignatureTransactions" : [ {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    }, {
      "id" : "5000123",
      "daysSpent" : 240,
      "date" : "2024-11-23T04:56:07Z",
      "status" : "{}",
      "requesterId" : "5000123",
      "signatoryId" : "500012",
      "signatoryType" : "{}",
      "signatoryEmail" : "user@email.com",
      "signatureStatus" : "{}",
      "signatureDate" : "2024-11-23T04:56:07Z",
      "rejectionReason" : "Lorem ipsum",
      "ranking" : 2
    } ],
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    }
  }
}

2.8.22. Pre-fill the quotation expense line

POST

/quotations/pre-fill-expense-line

Description

Pre-fill a quotation expense line to update several fields. Options to pre-fill in the quotation expense line are listed in the link below.

DMF required:
  • DMF AB0101: Api Sales / Quotations / Create

  • DMF 020201: Sales / Quotations / New

  • DMF 0202__: Sales / Quotations

Or
  • DMF AB0110: Api Sales / Quotations / Update

  • DMF 020202: Sales / Quotations / Modify

Or
  • DMF AB0116: Api Sales / Quotations / Update A Quotation To Be Approved

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

Or
  • DMF AB0117: Api Sales / Quotations / Update A Validated Quotation

  • DMF 020213: Sales / Quotations / Modify Validated Quotation

Parameters
Body Parameter
Name Description Required Default Pattern

quotationExpenseLinePreFillInput

The parameters to pre-fill a quotation expense line QuotationExpenseLinePreFillInput QuotationExpenseLinePreFillInput

X

Content Type
  • application/json

Responses
Table 74. http response codes
Code Message Datatype

200

The quotation expense line has been successfully pre-filled

QuotationExpenseLine

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

{
  "quotationExpenseLine" : {
    "id" : "5000123",
    "type" : "{}",
    "quotationLine" : {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    },
    "quotationLineId" : "5000123",
    "quotationId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "supplier" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "supplierId" : "5000123",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "purchasedProduct" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "purchasedProductId" : "purchasedProductId",
    "actionCode" : {
      "id" : "5000123",
      "name" : "ADD"
    },
    "actionCodeId" : "5000123",
    "label" : "Facturation modules Akuiteo",
    "text" : "Texte",
    "quantity" : 10,
    "unitCost" : 100,
    "coefficient" : 2,
    "totalCost" : 1000,
    "totalCostCompanyCurrencyDevise" : 1000,
    "purchaseCost" : 2000,
    "laborDuration" : 1000,
    "laborCost" : 1000,
    "otherCosts" : 600,
    "project" : {
      "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" : "{}"
    },
    "projectId" : "5000123",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "expectedDate" : "2020-01-23T04:56:07Z",
    "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" : 0.9156852,
    "startPeriod" : "2020-01-23T04:56:07Z",
    "endPeriod" : "2020-01-23T04:56:07Z",
    "isGroup" : true,
    "isInternal" : true,
    "isGenerated" : true,
    "isAutoGenerated" : true,
    "ranking" : 2,
    "scheduledInformation" : {
      "totalDuration" : 10.5
    },
    "action" : "{}"
  }
}

2.8.23. Pre-fill the quotation line

POST

/quotations/pre-fill-line

Description

Pre-fill a quotation line to update several fields. Options to pre-fill in the quotation line are listed in the link below.

DMF required:
  • DMF AB0101: Api Sales / Quotations / Create

  • DMF 020201: Sales / Quotations / New

  • DMF 0202__: Sales / Quotations

Or
  • DMF AB0110: Api Sales / Quotations / Update

  • DMF 020202: Sales / Quotations / Modify

Or
  • DMF AB0116: Api Sales / Quotations / Update A Quotation To Be Approved

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

Or
  • DMF AB0117: Api Sales / Quotations / Update A Validated Quotation

  • DMF 020213: Sales / Quotations / Modify Validated Quotation

Parameters
Body Parameter
Name Description Required Default Pattern

quotationLinePreFillParamHolder

The parameters to pre-fill a quotation line QuotationLinePreFillParamHolder QuotationLinePreFillParamHolder

X

Content Type
  • application/json

Responses
Table 75. http response codes
Code Message Datatype

200

The quotation line has been successfully pre-filled

QuotationLine

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

{
  "customerToBillId" : "500124",
  "internal" : true,
  "pricingMethodId" : "500122",
  "quotationLine" : {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  },
  "customerId" : "500123",
  "reloadSoldProduct" : true,
  "currencyCode" : "GBP",
  "customerSiteId" : "500125",
  "quotationDate" : "2020-01-23T04:56:07Z",
  "group" : true
}

2.8.24. Publish a quotation

POST

/quotations/{quotation_id}/publish

Description

Publish a quotation using the template given as a parameter.

DMF required:
  • DMF AB0105: Api Sales / Quotations / Publish

  • DMF 020205: Sales / Quotations / Print

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing a quotation PublishArguments

X

Content Type
  • application/json

Responses
Table 76. 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.8.25. Search a quotation with read options

POST

/quotations/{quotation_id}/read

Description

Get a quotation, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0106: Api Sales / Quotations / Info

  • DMF 0202__: Sales / Quotations

  • DMF 020204: Sales / Quotations / Search

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned quotation QuotationReadOption

-

Content Type
  • application/json

Responses
Table 77. http response codes
Code Message Datatype

200

Quotation successfully loaded

Quotation

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.8.26. Reset the customer site address

POST

/quotations/{quotation_id}/reset-address

Description

Reset the customer site address in a quotation depending on the type site.
The site type can be a delivery address, a billing address or a sales order address.
If the quotation is signed, it is not possible to reset customer site address for delivery, sales order or billing.
If the quotation is validated, it is not possible to change the billing address or the delivery address.
If the quotation is in draft or validated, the sales order address must have mandatory a customer site address.

DMF required:
  • DMF AB0122: Api Sales / Quotations / Update Address

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020227: Sales / Quotations / Addresses

  • DMF 020248: Sales / Quotations / Modify Delivery Site Validated Quotation

  • DMF 020249: Sales / Quotations / Modify Billing Site Validated Quotation

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

site-type

The site type to be reset in the quotation [string]

X

Content Type
  • text/plain

Responses
Table 78. http response codes
Code Message Datatype

200

The quotation has been successfully updated with the customer address

[String]

404

There is no quotation 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

Samples
Body parameter
Click to expand


2.8.27. Resets the approvals of a quotation.

POST

/quotations/{quotation_id}/approvals/reset

Description

Resets approvals for a quotation and triggers new approval requests on that quotation.
This API clears the current approval requests on the quotation and initiates a fresh approval process based on the applicable rules.

DMF required:
  • DMF A50111: Api Approval Process / Approvals / Reset

  • DMF 061810: Projects / Approvals / Cancel

  • DMF 061813: Projects / Approvals / Reset Approvals

  • DMF 190901: Web Portal / Approvals

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Responses
Table 79. http response codes
Code Message Datatype

204

The new approval requests have been successfully reset

<<>>

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.28. Review a quotation

POST

/quotations/{quotation_id}/review

Description

Review a quotation
Only validated quotations can be reviewed

DMF required:
  • DMF AB0112: Api Sales / Quotations / Review A Quotation

  • DMF 020224: Sales / Quotations / Review

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

quotationRevisionNumber

Quote revision number when revising a quote (use the value field in the StringParamHolder resource) StringParamHolder

-

Content Type
  • text/plain

Responses
Table 80. http response codes
Code Message Datatype

200

The quotation has been successfully reviewed. The id returned is the new number of the quotation reviewed

[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

{
  "value" : "true"
}

2.8.29. Search for quotations (with search criteria)

POST

/quotations/search

Description

Get the list of quotations matching the search criteria.

DMF required:
  • DMF AB0104: Api Sales / Quotations / Search

  • DMF 020204: Sales / Quotations / Search

  • DMF 1920__: Web Portal / Services

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…​) QuotationCriteria

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

200

Quotations successfully loaded

List[Quotation]

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" : "*"
  },
  "date" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "creationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "afterTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "preTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "currencyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "managerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "fiscalYearId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "journalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "description" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "internal" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "group" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "methodOfPayment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "reference1" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference2" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference3" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "opportunityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "chorusCriteria" : {
    "contractNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "commitmentNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "effectiveDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "serviceCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serviceName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "customerDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "salesOrderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "deliverySiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "code" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "sectorId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "accountManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesmanId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "expectedSignatureDate" : {
    "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
  },
  "quotationProbability" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "state" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "orderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "technicalManagerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "notification" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "lineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "notificationDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "notificationComment" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesPersonId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "productionLinkedToAdvancePayments" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "productionTeamId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "expenseLineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "quotationLineId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "quotationId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "employeeId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "supplierId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "readOption" : {
      "options" : [ "EMPLOYEE", "EMPLOYEE" ]
    }
  },
  "readOption" : {
    "options" : [ "MANAGER", "MANAGER" ]
  },
  "activeModule" : "{}",
  "archivingDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "archiveComment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "archiveReasonId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "eSignatureStatus" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.8.30. Send a quotation by email

POST

/quotations/{quotation_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 AB0190: Api Sales / Quotations / Send Message

  • DMF 020205: Sales / Quotations / Print

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

mail

The message to send TemplatedMessage

-

Responses
Table 82. 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.8.31. Associate or change the customer site address in a quotation

POST

/quotations/{quotation_id}/set-address

Description

Associate or change the customer site address in a quotation depending on the type site.
The site type can be a delivery address, a billing address or a sales order address.
If the quotation is signed, it is not possible to change customer site address for delivery, sales order or billing.
If the quotation is validated, it is not possible to change the billing address or the delivery address.

DMF required:
  • DMF AB0122: Api Sales / Quotations / Update Address

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020227: Sales / Quotations / Addresses

  • DMF 020248: Sales / Quotations / Modify Delivery Site Validated Quotation

  • DMF 020249: Sales / Quotations / Modify Billing Site Validated Quotation

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

site_address

The site address to be set in the quotation SalesManagementSite

X

Content Type
  • text/plain

Responses
Table 83. http response codes
Code Message Datatype

200

The quotation has been successfully updated with the customer address

[String]

404

There is no quotation 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

Samples
Body parameter
Click to expand

{
  "siteId" : "5000123"
}

2.8.32. Update a quotation

POST

/quotations/{quotation_id}

Description

Update a quotation

DMF required:
  • DMF AB0110: Api Sales / Quotations / Update

  • DMF 020202: Sales / Quotations / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

quotation

The quotation to update Quotation

X

Content Type
  • text/plain

Responses
Table 84. http response codes
Code Message Datatype

200

Quotation successfully updated

[String]

404

There is no Quotation

<<>>

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",
  "project" : {
    "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" : "{}"
  },
  "projectId" : "PRJT_001",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "51000122",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "number" : "CC00001",
  "name" : "Label for my doc",
  "type" : "{}",
  "companyCode" : "AKSAS",
  "companyId" : "5000123",
  "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"
  },
  "date" : "2000-06-21T04:56:07.000+00:00",
  "description" : "Lorem ipsum",
  "entityCode" : "Lyon",
  "afterTaxAmount" : 120.37,
  "preTaxAmount" : 100.14,
  "thirdPartyId" : "CUSTOMER01",
  "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"
  },
  "approvalState" : "{}",
  "approvalDate" : "2000-06-21T04:56:07.000+00:00",
  "exchangeRate" : 10.26,
  "thirdPartyToBillId" : "CUSTOMER02",
  "manager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "managerId" : "5000123",
  "payment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "End of month",
    "day" : 10
  },
  "conditionOfPayment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "1",
    "day" : 10
  },
  "methodOfPayment" : "{}",
  "fiscalYear" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "journalEntryNumberingId" : "5000123"
  },
  "fiscalYearId" : "5000123",
  "accountingJournal" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "startDate" : "2000-06-21",
    "endDate" : "2000-06-21",
    "miscellaneousTransactionsProhibited" : true,
    "excludedByDefault" : true
  },
  "accountingJournalId" : "1203",
  "internal" : true,
  "group" : true,
  "assignmentIndicator" : "{}",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "afterTaxAmountCurrency" : 1500,
  "preTaxAmountCurrency" : 100.14,
  "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
  },
  "reference1" : "CUSTOM_REF_1",
  "reference2" : "CUSTOM_REF_2",
  "reference3" : "CUSTOM_REF_3",
  "customer" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerId" : "5000123",
  "customerToBill" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerToBillId" : "5000123",
  "objectHistoryLinks" : [ {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  }, {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  } ],
  "chorusProperties" : {
    "serviceCode" : "Z-FDJ-CA",
    "serviceName" : "SCA",
    "contractNumber" : "5000123",
    "commitmentNumber" : "5000123",
    "marketName" : "Lorem ipsum",
    "effectiveDate" : "2020-01-31T23:59:59Z"
  },
  "customerDate" : "2020-01-31T23:59:59Z",
  "entity" : {
    "id" : "5000123",
    "code" : "01-BRDX",
    "name" : "Bordeaux"
  },
  "entityId" : "5000123",
  "titleLines" : [ {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  }, {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  } ],
  "salesOrderSiteId" : "5000123",
  "salesOrderSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "deliverySiteId" : "5000123",
  "deliverySite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "billingSiteId" : "5000123",
  "billingSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "externalNumber" : "Salesforce",
  "expectedSignatureDate" : "2020-01-31T23:59:59Z",
  "actualSignatureDate" : "2020-02-01T00:00:00Z",
  "notified" : true,
  "contractNumber" : "contractNumber",
  "periodicity" : {
    "id" : "5000123",
    "code" : "{}",
    "duration" : 3,
    "term" : true,
    "tacitAgrement" : true,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "lineStartDate" : "2020-01-23T04:56:07Z"
  },
  "edited" : true,
  "notificationDate" : "2020-01-31T23:59:59Z",
  "lines" : [ {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  }, {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false,
    "percentDiscount" : 3.616076749251911,
    "amountDiscount" : 50,
    "projectedBillingDate" : "2020-01-31T23:59:59Z",
    "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
    "estimatedBillingDate" : "2020-01-31T23:59:59Z",
    "contractNumber" : "CC2017_HDI",
    "periodicity" : {
      "id" : "5000123",
      "code" : "{}",
      "duration" : 3,
      "term" : true,
      "tacitAgrement" : true,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "lineStartDate" : "2020-01-23T04:56:07Z"
    },
    "edited" : true,
    "salesPerson" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "salesPersonId" : "5000123",
    "notificationDate" : "2020-01-31T23:59:59Z",
    "notificationComment" : "Lorem ipsum",
    "productionTargetDay" : 22,
    "productionBillingTargetDay" : 5,
    "productionEstimatedDuration" : 240,
    "productionLinkedToAdvancePayments" : true,
    "productionTeam" : {
      "id" : "5000123",
      "code" : "PRD",
      "name" : "PROD"
    },
    "productionTeamId" : "5000123",
    "contractDate" : "2020-01-23T04:56:07Z",
    "isScheduled" : true,
    "recurringAmount" : {
      "afterTaxAmount" : 1440,
      "preTaxAmount" : 1200,
      "afterTaxAmountCurrency" : 1440,
      "preTaxAmountCurrency" : 1200,
      "vatAmount" : 240,
      "vatAmountCurrency" : 240
    },
    "scheduledInformation" : {
      "totalDuration" : 10.5
    }
  } ],
  "expenseLines" : [ {
    "id" : "5000123",
    "type" : "{}",
    "quotationLine" : {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    },
    "quotationLineId" : "5000123",
    "quotationId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "supplier" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "supplierId" : "5000123",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "purchasedProduct" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "purchasedProductId" : "purchasedProductId",
    "actionCode" : {
      "id" : "5000123",
      "name" : "ADD"
    },
    "actionCodeId" : "5000123",
    "label" : "Facturation modules Akuiteo",
    "text" : "Texte",
    "quantity" : 10,
    "unitCost" : 100,
    "coefficient" : 2,
    "totalCost" : 1000,
    "totalCostCompanyCurrencyDevise" : 1000,
    "purchaseCost" : 2000,
    "laborDuration" : 1000,
    "laborCost" : 1000,
    "otherCosts" : 600,
    "project" : {
      "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" : "{}"
    },
    "projectId" : "5000123",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "expectedDate" : "2020-01-23T04:56:07Z",
    "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" : 0.9156852,
    "startPeriod" : "2020-01-23T04:56:07Z",
    "endPeriod" : "2020-01-23T04:56:07Z",
    "isGroup" : true,
    "isInternal" : true,
    "isGenerated" : true,
    "isAutoGenerated" : true,
    "ranking" : 2,
    "scheduledInformation" : {
      "totalDuration" : 10.5
    },
    "action" : "{}"
  }, {
    "id" : "5000123",
    "type" : "{}",
    "quotationLine" : {
      "id" : "5000123",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "projectTask" : {
        "id" : "5000123",
        "code" : "code",
        "name" : "Team building",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "customer" : {
          "id" : "5000123",
          "code" : "CA122",
          "name" : "Akuiteo"
        },
        "customerId" : "5000123",
        "order" : 2,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "endDate" : "2000-06-21T04:56:07.000+00:00",
        "description" : "description"
      },
      "projectTaskId" : "5000123",
      "managementObjectId" : "5000123",
      "name" : "Helpdesk",
      "quantity" : 3,
      "unitPriceCurrency" : 36.32,
      "unitPrice" : 40,
      "amountTotalCurrency" : 1200,
      "amountTotal" : 1200,
      "rankNumber" : 2,
      "action" : "{}",
      "complementName" : "Lorem ipsum",
      "afterTaxAmountTotalCurrency" : 1500,
      "afterTaxAmountTotal" : 1500,
      "generalAccount" : "411000",
      "totalPriceCurrency" : 1200,
      "totalPrice" : 1200,
      "additionalFreeFields" : {
        "field1" : "Free field",
        "field2" : "Free field",
        "field3" : "Free field",
        "field4" : "Free field",
        "field5" : "Free field"
      },
      "resource" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "resourceId" : "resourceId",
      "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
      },
      "forcedVat" : true,
      "vat1" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vat2" : {
        "id" : "5000123",
        "code" : "7",
        "rate" : 1.4658129805029452
      },
      "vatAmount1" : 120,
      "vatAmount2" : 110,
      "vatAmount1Currency" : 126.57,
      "vatAmount2Currency" : 113.26,
      "discount" : {
        "type" : "{}",
        "percentage" : 20,
        "amountCurrency" : 150.75,
        "amount" : 150.75
      },
      "item" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "family" : "FML-LICENCE",
        "subFamily" : "RECCURENT",
        "category" : {
          "id" : "5000123",
          "code" : "LANG",
          "name" : "Language",
          "endDate" : "2000-06-21",
          "companyCode" : "AKSAS",
          "type" : "{}",
          "grouping" : "grouping",
          "ranking" : 5
        },
        "categoryId" : "10024",
        "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" : 5,
          "subCategoryType" : "{}"
        },
        "subCategoryId" : "11037",
        "companyCode" : "AKSAS",
        "entityCode" : "Lyon",
        "shortName" : "Maint",
        "name" : "Maintenance",
        "inventory" : true,
        "comment" : "Lorem ipsum",
        "billingMode" : "{}",
        "quantityPrecision" : 2,
        "unitPricePrecision" : 3,
        "productionEstimatedDuration" : 30,
        "inventoryAndPackaging" : {
          "packagingType" : "Warehouse",
          "packagingUnit" : 12
        },
        "customData" : {
          "key" : {
            "type" : "{}",
            "value" : "Autoref 010520",
            "name" : "Reference 4",
            "realOrder" : 0,
            "label" : "REFERENCE_4"
          }
        },
        "accountSettings" : {
          "localCostAccount" : "411000",
          "localGroupAccount" : "411000",
          "localSubscriptionAccount" : "411000",
          "localInternalAccount" : "411000",
          "intraComCostAccount" : "411000",
          "intraComGroupAccount" : "411000",
          "intraComSubscriptionAccount" : "411000",
          "intraComInternalAccount" : "411000",
          "exportCostAccount" : "411000",
          "exportGroupAccount" : "411000",
          "toBeEstablishedAccount" : "411000",
          "vatCode" : "1",
          "reverseVAT" : true,
          "disabledDate" : "2000-06-21",
          "marketEndDate" : "2000-06-21"
        }
      },
      "itemId" : "10727",
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "helpdeskProperties" : {
        "contractNumber" : "CC202005",
        "contract" : {
          "id" : "5000123",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "projectTask" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "Team building",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJT_001",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "subPhase" : {
              "id" : "5000123",
              "code" : "SB_1",
              "name" : "Sub Phase 1",
              "phase" : {
                "id" : "5000123",
                "code" : "PHS_1",
                "name" : "Phase 1",
                "project" : {
                  "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" : "{}"
                },
                "projectId" : "PRJ_1",
                "order" : 1
              },
              "phaseId" : "5000123",
              "order" : 1
            },
            "subPhaseId" : "51000122",
            "customer" : {
              "id" : "5000123",
              "code" : "CA122",
              "name" : "Akuiteo"
            },
            "customerId" : "5000123",
            "order" : 2,
            "startDate" : "2000-06-21T04:56:07.000+00:00",
            "endDate" : "2000-06-21T04:56:07.000+00:00",
            "description" : "description"
          },
          "projectTaskId" : "5000123",
          "number" : "CC00001",
          "name" : "Label for my doc",
          "type" : "{}",
          "companyCode" : "AKSAS",
          "companyId" : "5000123",
          "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"
          },
          "date" : "2000-06-21T04:56:07.000+00:00",
          "description" : "Lorem ipsum",
          "entityCode" : "Lyon",
          "afterTaxAmount" : 120.37,
          "preTaxAmount" : 100.14,
          "thirdPartyId" : "CUSTOMER01",
          "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"
          },
          "approvalState" : "{}",
          "approvalDate" : "2000-06-21T04:56:07.000+00:00",
          "exchangeRate" : 10.26,
          "thirdPartyToBillId" : "CUSTOMER02",
          "manager" : {
            "id" : "5000123",
            "code" : "CASH",
            "name" : "DUPONT",
            "firstName" : "Jean",
            "action" : "{}"
          },
          "managerId" : "5000123",
          "payment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "End of month",
            "day" : 10
          },
          "conditionOfPayment" : {
            "code" : "5 days End of month by bank transfer",
            "deadLine" : "5",
            "term" : "1",
            "day" : 10
          },
          "methodOfPayment" : "{}",
          "fiscalYear" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "journalEntryNumberingId" : "5000123"
          },
          "fiscalYearId" : "5000123",
          "accountingJournal" : {
            "id" : "5000123",
            "code" : "code",
            "name" : "name",
            "startDate" : "2000-06-21",
            "endDate" : "2000-06-21",
            "miscellaneousTransactionsProhibited" : true,
            "excludedByDefault" : true
          },
          "accountingJournalId" : "1203",
          "internal" : true,
          "group" : true,
          "assignmentIndicator" : "{}",
          "pricingMethod" : {
            "id" : "5000123",
            "code" : "AKAS",
            "name" : "TARIFS AKAS"
          },
          "pricingMethodId" : "5000125",
          "afterTaxAmountCurrency" : 1500,
          "preTaxAmountCurrency" : 100.14,
          "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
          },
          "code" : "code"
        },
        "contractId" : "5000123",
        "contractVersionId" : "5000123",
        "contractCheck" : {
          "id" : "5000123",
          "name" : "A10_CHECKBOOK"
        },
        "contractCheckId" : "5000123",
        "task" : {
          "id" : "5000123",
          "number" : "1",
          "issueId" : "5000123",
          "issueNumber" : "253030000",
          "issueTitle" : "Text"
        },
        "taskId" : "5000123",
        "geographicalArea" : "EUROPE"
      },
      "billingMode" : "{}",
      "packItem" : {
        "id" : "5000123",
        "reference" : "ENGLISH",
        "grouping" : "LICENCE",
        "name" : "English licence",
        "entity" : {
          "id" : "5000123",
          "code" : "01-BRDX",
          "name" : "Bordeaux"
        },
        "entityId" : "5000123",
        "company" : {
          "id" : "5000123",
          "code" : "AK",
          "name" : "Akuiteo"
        },
        "companyId" : "5000123",
        "endDate" : "2029-01-23T04:56:07Z",
        "amountTotal" : 8000,
        "afterTaxAmountTotal" : 9000,
        "recurrenceOnAllPackLines" : true,
        "revisionIndexToAllPackLines" : false,
        "lines" : [ {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        }, {
          "action" : "{}",
          "soldItem" : {
            "id" : "5000123",
            "reference" : "ENGLISH",
            "grouping" : "LICENCE",
            "family" : "FML-LICENCE",
            "subFamily" : "RECCURENT",
            "category" : {
              "id" : "5000123",
              "code" : "LANG",
              "name" : "Language",
              "endDate" : "2000-06-21",
              "companyCode" : "AKSAS",
              "type" : "{}",
              "grouping" : "grouping",
              "ranking" : 5
            },
            "categoryId" : "10024",
            "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" : 5,
              "subCategoryType" : "{}"
            },
            "subCategoryId" : "11037",
            "companyCode" : "AKSAS",
            "entityCode" : "Lyon",
            "shortName" : "Maint",
            "name" : "Maintenance",
            "inventory" : true,
            "comment" : "Lorem ipsum",
            "billingMode" : "{}",
            "quantityPrecision" : 2,
            "unitPricePrecision" : 3,
            "productionEstimatedDuration" : 30,
            "inventoryAndPackaging" : {
              "packagingType" : "Warehouse",
              "packagingUnit" : 12
            },
            "customData" : {
              "key" : {
                "type" : "{}",
                "value" : "Autoref 010520",
                "name" : "Reference 4",
                "realOrder" : 0,
                "label" : "REFERENCE_4"
              }
            },
            "accountSettings" : {
              "localCostAccount" : "411000",
              "localGroupAccount" : "411000",
              "localSubscriptionAccount" : "411000",
              "localInternalAccount" : "411000",
              "intraComCostAccount" : "411000",
              "intraComGroupAccount" : "411000",
              "intraComSubscriptionAccount" : "411000",
              "intraComInternalAccount" : "411000",
              "exportCostAccount" : "411000",
              "exportGroupAccount" : "411000",
              "toBeEstablishedAccount" : "411000",
              "vatCode" : "1",
              "reverseVAT" : true,
              "disabledDate" : "2000-06-21",
              "marketEndDate" : "2000-06-21"
            },
            "productionInformations" : {
              "linkedToAdvancePayments" : true,
              "targetDay" : 22,
              "billingTargetDay" : 5,
              "estimatedDuration" : 240,
              "defaultDisplay" : false,
              "team" : {
                "id" : "5000123",
                "code" : "PRD",
                "name" : "PROD"
              },
              "teamId" : "5000123"
            },
            "automaticTitle" : "IT PRODUCT"
          },
          "soldItemId" : "5000124",
          "itemId" : "5000126",
          "quantity" : 30,
          "unitPrice" : 400,
          "vat" : {
            "id" : "5000123",
            "code" : "7",
            "rate" : 1.4658129805029452
          },
          "totalPrice" : 7000,
          "afterTaxAmountTotal" : 8400,
          "ranking" : 2
        } ]
      },
      "packItemId" : "10727",
      "lineTitleRattachId" : "5000123",
      "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
      "notPublishable" : false,
      "percentDiscount" : 3.616076749251911,
      "amountDiscount" : 50,
      "projectedBillingDate" : "2020-01-31T23:59:59Z",
      "estimatedDeliveryDate" : "2020-01-31T23:59:59Z",
      "estimatedBillingDate" : "2020-01-31T23:59:59Z",
      "contractNumber" : "CC2017_HDI",
      "periodicity" : {
        "id" : "5000123",
        "code" : "{}",
        "duration" : 3,
        "term" : true,
        "tacitAgrement" : true,
        "startDate" : "2000-06-21T04:56:07.000+00:00",
        "lineStartDate" : "2020-01-23T04:56:07Z"
      },
      "edited" : true,
      "salesPerson" : {
        "id" : "5000123",
        "code" : "CASH",
        "name" : "DUPONT",
        "firstName" : "Jean",
        "action" : "{}"
      },
      "salesPersonId" : "5000123",
      "notificationDate" : "2020-01-31T23:59:59Z",
      "notificationComment" : "Lorem ipsum",
      "productionTargetDay" : 22,
      "productionBillingTargetDay" : 5,
      "productionEstimatedDuration" : 240,
      "productionLinkedToAdvancePayments" : true,
      "productionTeam" : {
        "id" : "5000123",
        "code" : "PRD",
        "name" : "PROD"
      },
      "productionTeamId" : "5000123",
      "contractDate" : "2020-01-23T04:56:07Z",
      "isScheduled" : true,
      "recurringAmount" : {
        "afterTaxAmount" : 1440,
        "preTaxAmount" : 1200,
        "afterTaxAmountCurrency" : 1440,
        "preTaxAmountCurrency" : 1200,
        "vatAmount" : 240,
        "vatAmountCurrency" : 240
      },
      "scheduledInformation" : {
        "totalDuration" : 10.5
      }
    },
    "quotationLineId" : "5000123",
    "quotationId" : "5000123",
    "employee" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "employeeId" : "5000123",
    "supplier" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "supplierId" : "5000123",
    "pricingMethod" : {
      "id" : "5000123",
      "code" : "AKAS",
      "name" : "TARIFS AKAS"
    },
    "pricingMethodId" : "5000125",
    "purchasedProduct" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "purchasedProductId" : "purchasedProductId",
    "actionCode" : {
      "id" : "5000123",
      "name" : "ADD"
    },
    "actionCodeId" : "5000123",
    "label" : "Facturation modules Akuiteo",
    "text" : "Texte",
    "quantity" : 10,
    "unitCost" : 100,
    "coefficient" : 2,
    "totalCost" : 1000,
    "totalCostCompanyCurrencyDevise" : 1000,
    "purchaseCost" : 2000,
    "laborDuration" : 1000,
    "laborCost" : 1000,
    "otherCosts" : 600,
    "project" : {
      "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" : "{}"
    },
    "projectId" : "5000123",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "5000123",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "expectedDate" : "2020-01-23T04:56:07Z",
    "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" : 0.9156852,
    "startPeriod" : "2020-01-23T04:56:07Z",
    "endPeriod" : "2020-01-23T04:56:07Z",
    "isGroup" : true,
    "isInternal" : true,
    "isGenerated" : true,
    "isAutoGenerated" : true,
    "ranking" : 2,
    "scheduledInformation" : {
      "totalDuration" : 10.5
    },
    "action" : "{}"
  } ],
  "validationDate" : "2020-01-31T23:59:59Z",
  "quotationProbability" : "{}",
  "state" : "{}",
  "opportunity" : {
    "id" : "5000123",
    "code" : "OP2025",
    "name" : "ON PREMISE"
  },
  "opportunityId" : "5000123",
  "technicalManager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "technicalManagerId" : "5000123",
  "durationOfValidity" : 3,
  "origin" : "{}",
  "salesManager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "salesManagerId" : "5000123",
  "theoricalMargin" : 2.027123023002322,
  "commissionRate" : 50,
  "pipe" : {
    "id" : "5000123",
    "code" : "BIZZ",
    "name" : "Business"
  },
  "pipeId" : "5000678",
  "weightingCoefficient" : 0.85,
  "linesHierarchy" : [ {
    "id" : "5009552",
    "linesHierarchy" : [ null, null ],
    "elementType" : "{}",
    "ranking" : 7,
    "action" : "{}"
  }, {
    "id" : "5009552",
    "linesHierarchy" : [ null, null ],
    "elementType" : "{}",
    "ranking" : 7,
    "action" : "{}"
  } ],
  "archivingDate" : "2020-01-31T23:59:59Z",
  "archiveComment" : "Lorem ipsum",
  "archiveReason" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name"
  },
  "archiveReasonId" : "500000010",
  "eSignatureTransactions" : [ {
    "id" : "5000123",
    "daysSpent" : 240,
    "date" : "2024-11-23T04:56:07Z",
    "status" : "{}",
    "requesterId" : "5000123",
    "signatoryId" : "500012",
    "signatoryType" : "{}",
    "signatoryEmail" : "user@email.com",
    "signatureStatus" : "{}",
    "signatureDate" : "2024-11-23T04:56:07Z",
    "rejectionReason" : "Lorem ipsum",
    "ranking" : 2
  }, {
    "id" : "5000123",
    "daysSpent" : 240,
    "date" : "2024-11-23T04:56:07Z",
    "status" : "{}",
    "requesterId" : "5000123",
    "signatoryId" : "500012",
    "signatoryType" : "{}",
    "signatoryEmail" : "user@email.com",
    "signatureStatus" : "{}",
    "signatureDate" : "2024-11-23T04:56:07Z",
    "rejectionReason" : "Lorem ipsum",
    "ranking" : 2
  } ],
  "recurringAmount" : {
    "afterTaxAmount" : 1440,
    "preTaxAmount" : 1200,
    "afterTaxAmountCurrency" : 1440,
    "preTaxAmountCurrency" : 1200,
    "vatAmount" : 240,
    "vatAmountCurrency" : 240
  }
}

2.8.33. Validate quotation

POST

/quotations/{quotation_id}/validate

Description

Validate the quotation matching the specified ID.
The validation date of the quotation will be set with the current date and the state will be set with VALIDATED.
Warning: Validation is not possible on a unapproval quotation, the approval date can’t be null.

DMF required:
  • DMF AB0114: Api Sales / Quotations / Validate

  • DMF 020208: Sales / Quotations / Validate

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Content Type
  • text/plain

Responses
Table 85. http response codes
Code Message Datatype

200

The quotation has been successfully validated

[String]

400

Validation is not possible on a unapproval quotation

<<>>

404

There is no quotation 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.9. Sales Billing Tables

2.9.1. Search a billing table by its ID

GET

/billing-tables/{billing_table_id}

Description

Get the billing table matching the specified ID.

DMF required:
  • DMF AB0506: Api Sales / Billing Table / Info

  • DMF 0207__: Sales / Billing Schedules

Parameters
Path Parameters
Name Description Required Default Pattern

billing_table_id

The id of a billing table

X

null

Content Type
  • application/json

Responses
Table 86. http response codes
Code Message Datatype

200

Billing table successfully loaded

SalesBillingTable

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.9.2. Publish a billing table

POST

/billing-tables/{billing_table_id}/publish

Description

Publish a billing table using the template given as a parameter.

DMF required:
  • DMF AB0505: Api Sales / Billing Table / Publish

  • DMF 020705: Sales / Billing Schedules / Print

Parameters
Path Parameters
Name Description Required Default Pattern

billing_table_id

The id of a billing table

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing a billing table PublishArguments

X

Content Type
  • application/json

Responses
Table 87. 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.9.3. Search a billing table with read options

POST

/billing-tables/{billing_table_id}/read

Description

Get a billing table, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0506: Api Sales / Billing Table / Info

  • DMF 0207__: Sales / Billing Schedules

Parameters
Path Parameters
Name Description Required Default Pattern

billing_table_id

The id of a billing table

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned billing table SalesBillingTableReadOption

-

Content Type
  • application/json

Responses
Table 88. http response codes
Code Message Datatype

200

billing table successfully loaded

SalesBillingTable

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" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
}

2.9.4. Search for billing tables (with search criteria)

POST

/billing-tables/search

Description

Get the list of billing tables matching the search criteria.

DMF required:
  • DMF AB0504: Api Sales / Billing Table / Search

  • DMF 020704: Sales / Billing Schedules / Search

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…​) SalesBillingTableCriteria

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

200

Billing tables successfully loaded

List[SalesBillingTable]

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" : "*"
  },
  "date" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "creationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "afterTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "preTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "currencyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "managerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "fiscalYearId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "journalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "description" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "internal" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "group" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "methodOfPayment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "reference1" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference2" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference3" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "opportunityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "chorusCriteria" : {
    "contractNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "commitmentNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "effectiveDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "serviceCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serviceName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "customerDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "salesOrderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "deliverySiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "code" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "sectorId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "accountManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesmanId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "lineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "readOption" : {
    "options" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
  },
  "customerSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.9.5. Send a billing table by email

POST

/billing-tables/{billing_table_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 AB0590: Api Sales / Billing Table / Send Message

  • DMF 020705: Sales / Billing Schedules / Print

Parameters
Path Parameters
Name Description Required Default Pattern

billing_table_id

The id of a billing table

X

null

Body Parameter
Name Description Required Default Pattern

mail

The message to send TemplatedMessage

-

Responses
Table 90. 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.10. Sales Invoices

2.10.1. Book invoice

POST

/invoices/{invoice_id}/book

Description

Book an invoice with its id and a date

DMF required:
  • DMF AB0306: Api Sales / Invoices / Book

  • DMF 0205__: Sales / Invoices

  • DMF 020511: Sales / Invoices / Book

  • DMF 020564: Sales / Invoices / Book Without Printing

  • DMF 020611: Sales / Credit Notes / Book

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

date

The booking date DateParamHolder

X

Content Type
  • text/plain

Responses
Table 91. http response codes
Code Message Datatype

200

Booked invoice number

[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

{
  "date" : "2000-01-23T04:56:07.000+00:00"
}

2.10.2. Get all recipient contacts in a sales invoice

GET

/invoices/{invoice_id}/recipient-contacts

Description

Get all recipient contacts in a sales invoice.

DMF required:
  • DMF AB0392: Api Sales / Invoices / Search Recipient Contacts

  • DMF 020106: Sales / Customer / Contacts

  • DMF 020505: Sales / Invoices / Print

  • DMF 020605: Sales / Credit Notes / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Content Type
  • application/json

Responses
Table 92. http response codes
Code Message Datatype

200

The recipient contacts have been successfully loaded.

List[RecipientContact]

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.10.3. Search an invoice by its ID

GET

/invoices/{invoice_id}

Description

Get the invoice matching the specified ID.

DMF required:
  • DMF AB0308: Api Sales / Invoices / Info

  • DMF 020505: Sales / Invoices / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Content Type
  • application/json

Responses
Table 93. http response codes
Code Message Datatype

200

Invoice successfully loaded

Invoice

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.10.4. Get expense receipts linked to an invoice

GET

/invoices/{invoice_id}/expense-receipts

Description

Get expense receipts of the invoice matching the given id

DMF required:
  • DMF AB0308: Api Sales / Invoices / Info

  • DMF 020505: Sales / Invoices / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Content Type
  • application/json

Responses
Table 94. http response codes
Code Message Datatype

200

Linked expense receipts

List[ExpenseReceiptSummary]

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.10.5. Identify expenses rebilled to customers

POST

/invoices/{invoice_id}/is-expense-rebill

Description

Return true if the invoice contains an expense which has been rebilled

DMF required:
  • DMF AB0308: Api Sales / Invoices / Info

  • DMF 020505: Sales / Invoices / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Content Type
  • application/json

Responses
Table 95. http response codes
Code Message Datatype

200

Return true if the invoice is a rebill of an expense report

[Boolean]

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.10.6. Patch a sales invoice

PATCH

/invoices/{invoice_id}

Description

Patch the sales invoice matching the specified ID and using the list of parameters below.
Note : On a booked invoice, only somes fields can be updated: managerId, entityCode, name, reference1, reference2, reference3, comment, description

DMF required:
  • DMF 020502: Sales / Invoices / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

PatchElement

List of patches to apply PatchElement

X

Content Type
  • text/plain

Responses
Table 96. http response codes
Code Message Datatype

200

The sales invoice 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.10.7. Publish an invoice

POST

/invoices/{invoice_id}/publish

Description

Publish an invoice using the template given as a parameter.

DMF required:
  • DMF AB0305: Api Sales / Invoices / Publish

  • DMF 020505: Sales / Invoices / Print

  • DMF 020605: Sales / Credit Notes / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing an invoice PublishArguments

X

Query Parameters
Name Description Required Default Pattern

join_expense_receipts

True to join the receipts of the linked expenses in the published document

-

null

Content Type
  • application/json

Responses
Table 97. 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.10.8. Search an invoice with read options

POST

/invoices/{invoice_id}/read

Description

Get an invoice, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0308: Api Sales / Invoices / Info

  • DMF 020505: Sales / Invoices / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned invoice InvoiceReadOption

-

Content Type
  • application/json

Responses
Table 98. http response codes
Code Message Datatype

200

Invoice successfully loaded

Invoice

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" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
}

2.10.9. Search for invoices (with search criteria)

POST

/invoices/search

Description

Get the list of invoices matching the search criteria

DMF required:
  • DMF AB0304: Api Sales / Invoices / Search

  • DMF 020504: Sales / Invoices / Search

  • DMF 020604: Sales / Credit Notes / Search

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…) InvoiceCriteria

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

200

Invoice successfully loaded

List[Invoice]

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" : "*"
  },
  "date" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "creationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "afterTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "preTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "currencyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "managerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "fiscalYearId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "journalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "description" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "internal" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "group" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "methodOfPayment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "reference1" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference2" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference3" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "opportunityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "chorusCriteria" : {
    "contractNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "commitmentNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "effectiveDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "serviceCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serviceName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "customerDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "salesOrderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "deliverySiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "code" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "sectorId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "accountManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesmanId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "lineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "deliveryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "readOption" : {
    "options" : [ "CHANGE_TRACKING", "CHANGE_TRACKING" ]
  },
  "balance" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "chorusStatus" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.10.10. Send an invoice by email

POST

/invoices/{invoice_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 AB0390: Api Sales / Invoices / Send Message

  • DMF 020505: Sales / Invoices / Print

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

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.10.11. Update a sales invoice

POST

/invoices/{invoice_id}

Description

Update a sales invoice.

DMF required:
  • DMF 020502: Sales / Invoices / Modify

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

Invoice

The invoice to update. Invoice

X

Content Type
  • text/plain

Responses
Table 101. http response codes
Code Message Datatype

200

The sales invoice 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",
  "project" : {
    "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" : "{}"
  },
  "projectId" : "PRJT_001",
  "phase" : {
    "id" : "5000123",
    "code" : "PHS_1",
    "name" : "Phase 1",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJ_1",
    "order" : 1
  },
  "phaseId" : "5000123",
  "subPhase" : {
    "id" : "5000123",
    "code" : "SB_1",
    "name" : "Sub Phase 1",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "order" : 1
  },
  "subPhaseId" : "51000122",
  "projectTask" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Team building",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "5000123",
    "order" : 2,
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "description" : "description"
  },
  "projectTaskId" : "5000123",
  "number" : "CC00001",
  "name" : "Label for my doc",
  "type" : "{}",
  "companyCode" : "AKSAS",
  "companyId" : "5000123",
  "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"
  },
  "date" : "2000-06-21T04:56:07.000+00:00",
  "description" : "Lorem ipsum",
  "entityCode" : "Lyon",
  "afterTaxAmount" : 120.37,
  "preTaxAmount" : 100.14,
  "thirdPartyId" : "CUSTOMER01",
  "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"
  },
  "approvalState" : "{}",
  "approvalDate" : "2000-06-21T04:56:07.000+00:00",
  "exchangeRate" : 10.26,
  "thirdPartyToBillId" : "CUSTOMER02",
  "manager" : {
    "id" : "5000123",
    "code" : "CASH",
    "name" : "DUPONT",
    "firstName" : "Jean",
    "action" : "{}"
  },
  "managerId" : "5000123",
  "payment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "End of month",
    "day" : 10
  },
  "conditionOfPayment" : {
    "code" : "5 days End of month by bank transfer",
    "deadLine" : "5",
    "term" : "1",
    "day" : 10
  },
  "methodOfPayment" : "{}",
  "fiscalYear" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "journalEntryNumberingId" : "5000123"
  },
  "fiscalYearId" : "5000123",
  "accountingJournal" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "name",
    "startDate" : "2000-06-21",
    "endDate" : "2000-06-21",
    "miscellaneousTransactionsProhibited" : true,
    "excludedByDefault" : true
  },
  "accountingJournalId" : "1203",
  "internal" : true,
  "group" : true,
  "assignmentIndicator" : "{}",
  "pricingMethod" : {
    "id" : "5000123",
    "code" : "AKAS",
    "name" : "TARIFS AKAS"
  },
  "pricingMethodId" : "5000125",
  "afterTaxAmountCurrency" : 1500,
  "preTaxAmountCurrency" : 100.14,
  "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
  },
  "reference1" : "CUSTOM_REF_1",
  "reference2" : "CUSTOM_REF_2",
  "reference3" : "CUSTOM_REF_3",
  "customer" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerId" : "5000123",
  "customerToBill" : {
    "id" : "5000123",
    "code" : "CA122",
    "name" : "Akuiteo"
  },
  "customerToBillId" : "5000123",
  "objectHistoryLinks" : [ {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  }, {
    "targetId" : "5000123",
    "objectId" : "5000123",
    "objectType" : "{}"
  } ],
  "chorusProperties" : {
    "serviceCode" : "Z-FDJ-CA",
    "serviceName" : "SCA",
    "contractNumber" : "5000123",
    "commitmentNumber" : "5000123",
    "marketName" : "Lorem ipsum",
    "effectiveDate" : "2020-01-31T23:59:59Z"
  },
  "customerDate" : "2020-01-31T23:59:59Z",
  "entity" : {
    "id" : "5000123",
    "code" : "01-BRDX",
    "name" : "Bordeaux"
  },
  "entityId" : "5000123",
  "titleLines" : [ {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  }, {
    "lineTitleId" : 5000123,
    "lineTitleLabel" : "Maintenance",
    "parentLineTitleId" : 5000123
  } ],
  "salesOrderSiteId" : "5000123",
  "salesOrderSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "deliverySiteId" : "5000123",
  "deliverySite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "billingSiteId" : "5000123",
  "billingSite" : {
    "id" : "5000123",
    "code" : "code",
    "name" : "Paris",
    "customer" : {
      "id" : "5000123",
      "code" : "CA122",
      "name" : "Akuiteo"
    },
    "customerId" : "CUST_001"
  },
  "lines" : [ {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false
  }, {
    "id" : "5000123",
    "project" : {
      "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" : "{}"
    },
    "projectId" : "PRJT_001",
    "phase" : {
      "id" : "5000123",
      "code" : "PHS_1",
      "name" : "Phase 1",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJ_1",
      "order" : 1
    },
    "phaseId" : "5000123",
    "subPhase" : {
      "id" : "5000123",
      "code" : "SB_1",
      "name" : "Sub Phase 1",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "order" : 1
    },
    "subPhaseId" : "51000122",
    "projectTask" : {
      "id" : "5000123",
      "code" : "code",
      "name" : "Team building",
      "project" : {
        "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" : "{}"
      },
      "projectId" : "PRJT_001",
      "phase" : {
        "id" : "5000123",
        "code" : "PHS_1",
        "name" : "Phase 1",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJ_1",
        "order" : 1
      },
      "phaseId" : "5000123",
      "subPhase" : {
        "id" : "5000123",
        "code" : "SB_1",
        "name" : "Sub Phase 1",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "order" : 1
      },
      "subPhaseId" : "51000122",
      "customer" : {
        "id" : "5000123",
        "code" : "CA122",
        "name" : "Akuiteo"
      },
      "customerId" : "5000123",
      "order" : 2,
      "startDate" : "2000-06-21T04:56:07.000+00:00",
      "endDate" : "2000-06-21T04:56:07.000+00:00",
      "description" : "description"
    },
    "projectTaskId" : "5000123",
    "managementObjectId" : "5000123",
    "name" : "Helpdesk",
    "quantity" : 3,
    "unitPriceCurrency" : 36.32,
    "unitPrice" : 40,
    "amountTotalCurrency" : 1200,
    "amountTotal" : 1200,
    "rankNumber" : 2,
    "action" : "{}",
    "complementName" : "Lorem ipsum",
    "afterTaxAmountTotalCurrency" : 1500,
    "afterTaxAmountTotal" : 1500,
    "generalAccount" : "411000",
    "totalPriceCurrency" : 1200,
    "totalPrice" : 1200,
    "additionalFreeFields" : {
      "field1" : "Free field",
      "field2" : "Free field",
      "field3" : "Free field",
      "field4" : "Free field",
      "field5" : "Free field"
    },
    "resource" : {
      "id" : "5000123",
      "code" : "CASH",
      "name" : "DUPONT",
      "firstName" : "Jean",
      "action" : "{}"
    },
    "resourceId" : "resourceId",
    "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
    },
    "forcedVat" : true,
    "vat1" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vat2" : {
      "id" : "5000123",
      "code" : "7",
      "rate" : 1.4658129805029452
    },
    "vatAmount1" : 120,
    "vatAmount2" : 110,
    "vatAmount1Currency" : 126.57,
    "vatAmount2Currency" : 113.26,
    "discount" : {
      "type" : "{}",
      "percentage" : 20,
      "amountCurrency" : 150.75,
      "amount" : 150.75
    },
    "item" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "family" : "FML-LICENCE",
      "subFamily" : "RECCURENT",
      "category" : {
        "id" : "5000123",
        "code" : "LANG",
        "name" : "Language",
        "endDate" : "2000-06-21",
        "companyCode" : "AKSAS",
        "type" : "{}",
        "grouping" : "grouping",
        "ranking" : 5
      },
      "categoryId" : "10024",
      "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" : 5,
        "subCategoryType" : "{}"
      },
      "subCategoryId" : "11037",
      "companyCode" : "AKSAS",
      "entityCode" : "Lyon",
      "shortName" : "Maint",
      "name" : "Maintenance",
      "inventory" : true,
      "comment" : "Lorem ipsum",
      "billingMode" : "{}",
      "quantityPrecision" : 2,
      "unitPricePrecision" : 3,
      "productionEstimatedDuration" : 30,
      "inventoryAndPackaging" : {
        "packagingType" : "Warehouse",
        "packagingUnit" : 12
      },
      "customData" : {
        "key" : {
          "type" : "{}",
          "value" : "Autoref 010520",
          "name" : "Reference 4",
          "realOrder" : 0,
          "label" : "REFERENCE_4"
        }
      },
      "accountSettings" : {
        "localCostAccount" : "411000",
        "localGroupAccount" : "411000",
        "localSubscriptionAccount" : "411000",
        "localInternalAccount" : "411000",
        "intraComCostAccount" : "411000",
        "intraComGroupAccount" : "411000",
        "intraComSubscriptionAccount" : "411000",
        "intraComInternalAccount" : "411000",
        "exportCostAccount" : "411000",
        "exportGroupAccount" : "411000",
        "toBeEstablishedAccount" : "411000",
        "vatCode" : "1",
        "reverseVAT" : true,
        "disabledDate" : "2000-06-21",
        "marketEndDate" : "2000-06-21"
      }
    },
    "itemId" : "10727",
    "startDate" : "2000-06-21T04:56:07.000+00:00",
    "endDate" : "2000-06-21T04:56:07.000+00:00",
    "helpdeskProperties" : {
      "contractNumber" : "CC202005",
      "contract" : {
        "id" : "5000123",
        "project" : {
          "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" : "{}"
        },
        "projectId" : "PRJT_001",
        "phase" : {
          "id" : "5000123",
          "code" : "PHS_1",
          "name" : "Phase 1",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJ_1",
          "order" : 1
        },
        "phaseId" : "5000123",
        "subPhase" : {
          "id" : "5000123",
          "code" : "SB_1",
          "name" : "Sub Phase 1",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "order" : 1
        },
        "subPhaseId" : "51000122",
        "projectTask" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "Team building",
          "project" : {
            "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" : "{}"
          },
          "projectId" : "PRJT_001",
          "phase" : {
            "id" : "5000123",
            "code" : "PHS_1",
            "name" : "Phase 1",
            "project" : {
              "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" : "{}"
            },
            "projectId" : "PRJ_1",
            "order" : 1
          },
          "phaseId" : "5000123",
          "subPhase" : {
            "id" : "5000123",
            "code" : "SB_1",
            "name" : "Sub Phase 1",
            "phase" : {
              "id" : "5000123",
              "code" : "PHS_1",
              "name" : "Phase 1",
              "project" : {
                "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" : "{}"
              },
              "projectId" : "PRJ_1",
              "order" : 1
            },
            "phaseId" : "5000123",
            "order" : 1
          },
          "subPhaseId" : "51000122",
          "customer" : {
            "id" : "5000123",
            "code" : "CA122",
            "name" : "Akuiteo"
          },
          "customerId" : "5000123",
          "order" : 2,
          "startDate" : "2000-06-21T04:56:07.000+00:00",
          "endDate" : "2000-06-21T04:56:07.000+00:00",
          "description" : "description"
        },
        "projectTaskId" : "5000123",
        "number" : "CC00001",
        "name" : "Label for my doc",
        "type" : "{}",
        "companyCode" : "AKSAS",
        "companyId" : "5000123",
        "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"
        },
        "date" : "2000-06-21T04:56:07.000+00:00",
        "description" : "Lorem ipsum",
        "entityCode" : "Lyon",
        "afterTaxAmount" : 120.37,
        "preTaxAmount" : 100.14,
        "thirdPartyId" : "CUSTOMER01",
        "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"
        },
        "approvalState" : "{}",
        "approvalDate" : "2000-06-21T04:56:07.000+00:00",
        "exchangeRate" : 10.26,
        "thirdPartyToBillId" : "CUSTOMER02",
        "manager" : {
          "id" : "5000123",
          "code" : "CASH",
          "name" : "DUPONT",
          "firstName" : "Jean",
          "action" : "{}"
        },
        "managerId" : "5000123",
        "payment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "End of month",
          "day" : 10
        },
        "conditionOfPayment" : {
          "code" : "5 days End of month by bank transfer",
          "deadLine" : "5",
          "term" : "1",
          "day" : 10
        },
        "methodOfPayment" : "{}",
        "fiscalYear" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "journalEntryNumberingId" : "5000123"
        },
        "fiscalYearId" : "5000123",
        "accountingJournal" : {
          "id" : "5000123",
          "code" : "code",
          "name" : "name",
          "startDate" : "2000-06-21",
          "endDate" : "2000-06-21",
          "miscellaneousTransactionsProhibited" : true,
          "excludedByDefault" : true
        },
        "accountingJournalId" : "1203",
        "internal" : true,
        "group" : true,
        "assignmentIndicator" : "{}",
        "pricingMethod" : {
          "id" : "5000123",
          "code" : "AKAS",
          "name" : "TARIFS AKAS"
        },
        "pricingMethodId" : "5000125",
        "afterTaxAmountCurrency" : 1500,
        "preTaxAmountCurrency" : 100.14,
        "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
        },
        "code" : "code"
      },
      "contractId" : "5000123",
      "contractVersionId" : "5000123",
      "contractCheck" : {
        "id" : "5000123",
        "name" : "A10_CHECKBOOK"
      },
      "contractCheckId" : "5000123",
      "task" : {
        "id" : "5000123",
        "number" : "1",
        "issueId" : "5000123",
        "issueNumber" : "253030000",
        "issueTitle" : "Text"
      },
      "taskId" : "5000123",
      "geographicalArea" : "EUROPE"
    },
    "billingMode" : "{}",
    "packItem" : {
      "id" : "5000123",
      "reference" : "ENGLISH",
      "grouping" : "LICENCE",
      "name" : "English licence",
      "entity" : {
        "id" : "5000123",
        "code" : "01-BRDX",
        "name" : "Bordeaux"
      },
      "entityId" : "5000123",
      "company" : {
        "id" : "5000123",
        "code" : "AK",
        "name" : "Akuiteo"
      },
      "companyId" : "5000123",
      "endDate" : "2029-01-23T04:56:07Z",
      "amountTotal" : 8000,
      "afterTaxAmountTotal" : 9000,
      "recurrenceOnAllPackLines" : true,
      "revisionIndexToAllPackLines" : false,
      "lines" : [ {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      }, {
        "action" : "{}",
        "soldItem" : {
          "id" : "5000123",
          "reference" : "ENGLISH",
          "grouping" : "LICENCE",
          "family" : "FML-LICENCE",
          "subFamily" : "RECCURENT",
          "category" : {
            "id" : "5000123",
            "code" : "LANG",
            "name" : "Language",
            "endDate" : "2000-06-21",
            "companyCode" : "AKSAS",
            "type" : "{}",
            "grouping" : "grouping",
            "ranking" : 5
          },
          "categoryId" : "10024",
          "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" : 5,
            "subCategoryType" : "{}"
          },
          "subCategoryId" : "11037",
          "companyCode" : "AKSAS",
          "entityCode" : "Lyon",
          "shortName" : "Maint",
          "name" : "Maintenance",
          "inventory" : true,
          "comment" : "Lorem ipsum",
          "billingMode" : "{}",
          "quantityPrecision" : 2,
          "unitPricePrecision" : 3,
          "productionEstimatedDuration" : 30,
          "inventoryAndPackaging" : {
            "packagingType" : "Warehouse",
            "packagingUnit" : 12
          },
          "customData" : {
            "key" : {
              "type" : "{}",
              "value" : "Autoref 010520",
              "name" : "Reference 4",
              "realOrder" : 0,
              "label" : "REFERENCE_4"
            }
          },
          "accountSettings" : {
            "localCostAccount" : "411000",
            "localGroupAccount" : "411000",
            "localSubscriptionAccount" : "411000",
            "localInternalAccount" : "411000",
            "intraComCostAccount" : "411000",
            "intraComGroupAccount" : "411000",
            "intraComSubscriptionAccount" : "411000",
            "intraComInternalAccount" : "411000",
            "exportCostAccount" : "411000",
            "exportGroupAccount" : "411000",
            "toBeEstablishedAccount" : "411000",
            "vatCode" : "1",
            "reverseVAT" : true,
            "disabledDate" : "2000-06-21",
            "marketEndDate" : "2000-06-21"
          },
          "productionInformations" : {
            "linkedToAdvancePayments" : true,
            "targetDay" : 22,
            "billingTargetDay" : 5,
            "estimatedDuration" : 240,
            "defaultDisplay" : false,
            "team" : {
              "id" : "5000123",
              "code" : "PRD",
              "name" : "PROD"
            },
            "teamId" : "5000123"
          },
          "automaticTitle" : "IT PRODUCT"
        },
        "soldItemId" : "5000124",
        "itemId" : "5000126",
        "quantity" : 30,
        "unitPrice" : 400,
        "vat" : {
          "id" : "5000123",
          "code" : "7",
          "rate" : 1.4658129805029452
        },
        "totalPrice" : 7000,
        "afterTaxAmountTotal" : 8400,
        "ranking" : 2
      } ]
    },
    "packItemId" : "10727",
    "lineTitleRattachId" : "5000123",
    "path" : [ "Title 1", "Subtitle 2", "Pack 1" ],
    "notPublishable" : false
  } ],
  "invoiceType" : "{}",
  "balance" : 120.37,
  "origin" : "{}",
  "comment" : "Lorem ipsum",
  "dematerializationStatus" : "{}",
  "transmissionDate" : "2020-01-23T04:56:07Z",
  "bookedOn" : "2020-01-23T04:56:07Z",
  "sentOn" : "2020-01-23T04:56:07Z",
  "paidOn" : "2020-01-23T04:56:07Z",
  "chorusTransactionId" : "550e8400-e29b-41d4",
  "chorusStatus" : "SUBMITTED"
}

2.10.12. Update the dematerialization status

POST

/invoices/{invoice_id}/update-demat-status

Description

Update the dematerialization status.

DMF required:
  • DMF AB0391: Api Sales / Invoices / Update Invoice Demat Status

  • DMF 020536: Sales / Invoices / Modify Transmission Status

  • DMF 020537: Sales / Invoices / Dematerialize Invoice

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

StringParamHolder

The dematerialization status. StringParamHolder

-

Responses
Table 102. http response codes
Code Message Datatype

204

The sales invoice has been successfully updated with the dematerialization status

<<>>

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.11. Sales Orders

2.11.1. Get all recipient contacts in a sales order

GET

/orders/{sales_order_id}/recipient-contacts

Description

Get all recipient contacts in a sales order

DMF required:
  • DMF AB0291: Api Sales / Orders / Search Recipient Contacts

  • DMF 020106: Sales / Customer / Contacts

  • DMF 020305: Sales / Sales Orders / Print

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Content Type
  • application/json

Responses
Table 103. http response codes
Code Message Datatype

200

The recipient contacts have been successfully loaded.

List[RecipientContact]

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.11.2. Search an order by its ID

GET

/orders/{sales_order_id}

Description

Get the order matching the specified ID.

DMF required:
  • DMF AB0206: Api Sales / Orders / Info

  • DMF 020304: Sales / Sales Orders / Search

  • DMF 0203__: Sales / Sales Orders

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Content Type
  • application/json

Responses
Table 104. http response codes
Code Message Datatype

200

Order successfully loaded

SalesOrder

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.11.3. Advanced search for orders

POST

/orders/dashboard

Description

This API provides an advanced search for sales orders. The search results can be processed: categorization, groupings, total amounts…​

DMF required:
  • DMF AB0204: Api Sales / Orders / Search

  • DMF 020304: Sales / Sales Orders / Search

  • DMF 0202__: Sales / Quotations

  • DMF 020202: Sales / Quotations / Modify

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Search criteria SalesOrderDashboardCriteria

-

Content Type
  • application/json

Responses
Table 105. http response codes
Code Message Datatype

200

Sales order results successfully loaded

List[SalesOrderDashboardResult]

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

{
  "line" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "itemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryItemType" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "notificationDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "notificationComment" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesPersonId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "salesOrder" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "date" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "creationDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "validationDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "name" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "companyCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "entityCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "afterTaxAmount" : {
      "operator" : "IS",
      "value" : 12.6,
      "includeNullResults" : false
    },
    "preTaxAmount" : {
      "operator" : "IS",
      "value" : 12.6,
      "includeNullResults" : false
    },
    "currencyCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "managerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "fiscalYearId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "journalId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "thirdPartyId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "thirdPartyToBillId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "description" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "approvalState" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "approvalDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "internal" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "group" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "methodOfPayment" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customData" : {
      "key" : {
        "operator" : "IS",
        "value" : "{}",
        "includeNullResults" : false
      }
    },
    "reference1" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference2" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference3" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerToBillId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "opportunityId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "chorusCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "commitmentNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "marketName" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "effectiveDate" : {
        "operator" : "IS",
        "value" : "2000-06-21T04:56:07.000+00:00",
        "includeNullResults" : false,
        "withTime" : false
      },
      "serviceCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "serviceName" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "customerDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "salesOrderSiteId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "deliverySiteId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "billingSiteId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "customerCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "code" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "sectorId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "type" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "accountManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesmanId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "pricingMethodId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "validated" : true,
    "delivered" : true,
    "salesJournalId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "state" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "readOption" : {
      "options" : [ "MANAGER", "MANAGER" ]
    },
    "orderSiteId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "technicalManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "notification" : {
      "operator" : "IS",
      "value" : false,
      "includeNullResults" : false
    },
    "lineCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "phaseId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subPhaseId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "resourceId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "generalAccountNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "grouping" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "reference" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeFieldCriteria" : {
        "additionalFreeField1" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "additionalFreeField2" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "additionalFreeField3" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "additionalFreeField4" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "additionalFreeField5" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        }
      },
      "startDate" : {
        "operator" : "IS",
        "value" : "2000-06-21T04:56:07.000+00:00",
        "includeNullResults" : false,
        "withTime" : false
      },
      "endDate" : {
        "operator" : "IS",
        "value" : "2000-06-21T04:56:07.000+00:00",
        "includeNullResults" : false,
        "withTime" : false
      },
      "dutiableCriteria" : {
        "forcedVat" : {
          "operator" : "IS",
          "value" : false,
          "includeNullResults" : false
        },
        "vat1" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "vat2" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        }
      },
      "projectCriteria" : {
        "id" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "name" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "tag" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "customerId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "customerProjectId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "referentialDate" : "2000-06-21T04:56:07.000+00:00",
        "projectGroupCode" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "divisionId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "entityId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "divisionGroupingId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "categoryId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "subCategoryId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "subCategoryLevel2Id" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "activityId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "managerId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "salesManagerId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "financialManagerId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "productionManagerId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "projectState" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "departmentId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "yearId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "companyId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        }
      },
      "projectTaskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "soldItemId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "helpdeskCriteria" : {
        "contractNumber" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "contractVersionId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "contractCheckId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "taskId" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        },
        "geographicalArea" : {
          "operator" : "IS",
          "value" : "Abcd",
          "includeNullResults" : false,
          "wildcards" : "*"
        }
      },
      "billingMode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "itemId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryItemType" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "notificationDate" : {
        "operator" : "IS",
        "value" : "2000-06-21T04:56:07.000+00:00",
        "includeNullResults" : false,
        "withTime" : false
      },
      "notificationComment" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesPersonId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "quotationId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "billingTableId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  }
}

2.11.4. Publish an order

POST

/orders/{sales_order_id}/publish

Description

Publish an order using the template given as a parameter.

DMF required:
  • DMF AB0205: Api Sales / Orders / Publish

  • DMF 020305: Sales / Sales Orders / Print

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Body Parameter
Name Description Required Default Pattern

publish_arguments

The arguments for publishing an order PublishArguments

X

Content Type
  • application/json

Responses
Table 106. 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.11.5. Search an order with read options

POST

/orders/{sales_order_id}/read

Description

Get an order, with additional information of your choice (example: change tracking information).
You can add this information with Read Options. These are listed in the link below.

DMF required:
  • DMF AB0206: Api Sales / Orders / Info

  • DMF 020304: Sales / Sales Orders / Search

  • DMF 0203__: Sales / Sales Orders

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned sales order SalesOrderReadOption

-

Content Type
  • application/json

Responses
Table 107. http response codes
Code Message Datatype

200

Order successfully loaded

SalesOrder

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.11.6. Search for orders (with search criteria)

POST

/orders/search

Description

Get the list of orders matching the search criteria.

DMF required:
  • DMF AB0204: Api Sales / Orders / Search

  • DMF 020304: Sales / Sales Orders / Search

  • DMF 0202__: Sales / Quotations

  • DMF 020202: Sales / Quotations / Modify

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…) SalesOrderCriteria

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

200

Orders successfully loaded

List[SalesOrder]

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" : "*"
  },
  "date" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "creationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "validationDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "companyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "entityCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "afterTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "preTaxAmount" : {
    "operator" : "IS",
    "value" : 12.6,
    "includeNullResults" : false
  },
  "currencyCode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "managerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "fiscalYearId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "journalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "thirdPartyToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "description" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalState" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "approvalDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "internal" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "group" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "methodOfPayment" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "reference1" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference2" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "reference3" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerToBillId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "opportunityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "chorusCriteria" : {
    "contractNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "commitmentNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "marketName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "effectiveDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "serviceCode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "serviceName" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "customerDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "salesOrderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "deliverySiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customerCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "code" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "sectorId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "type" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "accountManagerId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesmanId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "pricingMethodId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validated" : true,
  "delivered" : true,
  "salesJournalId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "state" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "MANAGER", "MANAGER" ]
  },
  "orderSiteId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "technicalManagerId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "notification" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "lineCriteria" : {
    "id" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "projectId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "phaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subPhaseId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "resourceId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "generalAccountNumber" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "grouping" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "reference" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "additionalFreeFieldCriteria" : {
      "additionalFreeField1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField3" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField4" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "additionalFreeField5" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "startDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "endDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "dutiableCriteria" : {
      "forcedVat" : {
        "operator" : "IS",
        "value" : false,
        "includeNullResults" : false
      },
      "vat1" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "vat2" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectCriteria" : {
      "id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "name" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "tag" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "customerProjectId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "referentialDate" : "2000-06-21T04:56:07.000+00:00",
      "projectGroupCode" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "entityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "divisionGroupingId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "categoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "subCategoryLevel2Id" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "activityId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "managerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "salesManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "financialManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "productionManagerId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "projectState" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "departmentId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "yearId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "companyId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "projectTaskId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "soldItemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "helpdeskCriteria" : {
      "contractNumber" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractVersionId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "contractCheckId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "taskId" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      },
      "geographicalArea" : {
        "operator" : "IS",
        "value" : "Abcd",
        "includeNullResults" : false,
        "wildcards" : "*"
      }
    },
    "billingMode" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "itemId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "categoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "subCategoryItemType" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "notificationDate" : {
      "operator" : "IS",
      "value" : "2000-06-21T04:56:07.000+00:00",
      "includeNullResults" : false,
      "withTime" : false
    },
    "notificationComment" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    },
    "salesPersonId" : {
      "operator" : "IS",
      "value" : "Abcd",
      "includeNullResults" : false,
      "wildcards" : "*"
    }
  },
  "quotationId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "billingTableId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.11.7. Send an order by email

POST

/orders/{sales_order_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 AB0290: Api Sales / Orders / Send Message

  • DMF 020305: Sales / Sales Orders / Print

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Body Parameter
Name Description Required Default Pattern

mail

The message to send TemplatedMessage

-

Responses
Table 109. 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.12. Sales Settings

2.12.1. Search for search field behavior

GET

/search-fields-information/search-types/{search_type}

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 a given search type

DMF required:
  • DMF AB0704: Api Sales / Settings / Search Fields Behavior

  • DMF 0102__: Prospecting / Opportunities

  • DMF 010204: Prospecting / Opportunities / Search

  • DMF 020204: Sales / Quotations / Search

  • DMF 020304: Sales / Sales Orders / Search

  • DMF 020404: Sales / Deliveries / Search

  • DMF 020504: Sales / Invoices / Search

  • DMF 020704: Sales / Billing Schedules / Search

Parameters
Path Parameters
Name Description Required Default Pattern

search_type

The type of the search

X

null

Content Type
  • application/json

Responses
Table 110. 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.12.2. Search for weighting coefficients

GET

/settings/weighting-coefficients/search

Description

Get the list of weighting coefficients

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)

Or
  • DMF AB0104: Api Sales / Quotations / Search

  • DMF 020204: Sales / Quotations / Search

  • DMF 1920__: Web Portal / Services

Content Type
  • application/json

Responses
Table 111. http response codes
Code Message Datatype

200

List of weighting coefficients

WeightingCoefficient

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.13. Sales VAT Amounts

2.13.1. Force VAT Amounts on a billing table

POST

/billing-table/{billing_table_id}/force-vat-amount

Description

Force vat amounts on billing table lines

DMF required:
  • DMF AB0507: Api Sales / Billing Table / Force Vat Amount

  • DMF 020721: Sales / Billing Schedules / Modify Vat Menu

Parameters
Path Parameters
Name Description Required Default Pattern

billing_table_id

The id of a billing table

X

null

Body Parameter
Name Description Required Default Pattern

forced_vat_amount_list

Information to force VAT amount on billing table lines ForcedVatAmountHolder

-

Content Type
  • application/json

Responses
Table 112. http response codes
Code Message Datatype

200

Return true if one or more billing table line have been modified

[Boolean]

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" : 124.56,
  "forced" : true,
  "managementObjectLineId" : "780023"
}

2.13.2. Force VAT Amounts on the invoice

POST

/invoices/{invoice_id}/force-vat-amount

Description

Force vat amounts on invoice’s lines

DMF required:
  • DMF AB0307: Api Sales / Invoices / Force Vat Amount

  • DMF 020565: Sales / Invoices / Modify Vat Menu

  • DMF 020566: Sales / Invoices / Neutralize Vat

Parameters
Path Parameters
Name Description Required Default Pattern

invoice_id

The id of the sales invoice

X

null

Body Parameter
Name Description Required Default Pattern

forced_vat_amount_list

Information to force VAT amount on invoice lines ForcedVatAmountHolder

-

Content Type
  • application/json

Responses
Table 113. http response codes
Code Message Datatype

200

Return true if one or more invoice have been modified

[Boolean]

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" : 124.56,
  "forced" : true,
  "managementObjectLineId" : "780023"
}

2.13.3. Force VAT Amounts on the order

POST

/orders/{sales_order_id}/force-vat-amount

Description

Force vat amounts on order’s lines

DMF required:
  • DMF AB0207: Api Sales / Orders / Force Vat Amount

  • DMF 020332: Sales / Sales Orders / Modify Vat Menu

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Body Parameter
Name Description Required Default Pattern

forced_vat_amount_list

Information to force VAT amount on order lines ForcedVatAmountHolder

-

Content Type
  • application/json

Responses
Table 114. http response codes
Code Message Datatype

200

Return true if one or more order lines have been modified

[Boolean]

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" : 124.56,
  "forced" : true,
  "managementObjectLineId" : "780023"
}

2.13.4. Force VAT Amounts on the quotation

POST

/quotations/{quotation_id}/force-vat-amount

Description

Force vat amounts on quotation’s lines

DMF required:
  • DMF AB0107: Api Sales / Quotations / Force Vat Amount

  • DMF 020238: Sales / Quotations / Modify Vat Menu

Parameters
Path Parameters
Name Description Required Default Pattern

quotation_id

The id of the quotation

X

null

Body Parameter
Name Description Required Default Pattern

forced_vat_amount_list

Information to force VAT amount on quotation lines ForcedVatAmountHolder

-

Content Type
  • application/json

Responses
Table 115. http response codes
Code Message Datatype

200

Return true if one or more quotation lines have been modified

[Boolean]

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" : 124.56,
  "forced" : true,
  "managementObjectLineId" : "780023"
}

2.13.5. Force VAT Amounts on a business document

POST

/{business_document_type}/{business_document_id}/force-vat-amount

Description

Force vat amounts on the line of a specified type of business document

DMF required:
  • DMF AB0107: Api Sales / Quotations / Force Vat Amount

  • DMF 020238: Sales / Quotations / Modify Vat Menu

Or
  • DMF AB0207: Api Sales / Orders / Force Vat Amount

  • DMF 020332: Sales / Sales Orders / Modify Vat Menu

Or
  • DMF AB0307: Api Sales / Invoices / Force Vat Amount

  • DMF 020565: Sales / Invoices / Modify Vat Menu

  • DMF 020566: Sales / Invoices / Neutralize Vat

Or
  • DMF AB0507: Api Sales / Billing Table / Force Vat Amount

  • DMF 020721: Sales / Billing Schedules / Modify Vat Menu

Parameters
Path Parameters
Name Description Required Default Pattern

business_document_type

Type of a Sales Business Document

X

null

business_document_id

The id of the object

X

null

Body Parameter
Name Description Required Default Pattern

forced_vat_amount_list

Information to force VAT amount on sales document lines ForcedVatAmountHolder

-

Content Type
  • application/json

Responses
Table 116. http response codes
Code Message Datatype

200

Return true if one or more sales line have been modified

[Boolean]

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" : 124.56,
  "forced" : true,
  "managementObjectLineId" : "780023"
}

2.14. Sold Items

2.14.1. Get the pricing information of a sold item

POST

/sold-items/{sold_item_id}/get-pricing-information

Description

Get the pricing information of a sold item, based on customer, quantity and pricing method

DMF required:
  • DMF A63207: Api Settings / Pricing Method / Get Unit Price

  • DMF 020201: Sales / Quotations / New

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020217: Sales / Quotations / Modify Signed Quotation

  • DMF 020225: Sales / Quotations / Modify Unsigned Ordered Quotation

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

  • DMF 020234: Sales / Quotations / Modify Reviewed Quotation

  • DMF 020301: Sales / Sales Orders / New

  • DMF 020302: Sales / Sales Orders / Modify

  • DMF 020314: Sales / Sales Orders / Modify Validated Sales Order

  • DMF 020325: Sales / Sales Orders / Modify Sales Order Submitted For Approval

  • DMF 020331: Sales / Sales Orders / Review Prices

Parameters
Path Parameters
Name Description Required Default Pattern

sold_item_id

The id of a sold item

X

null

Body Parameter
Name Description Required Default Pattern

salesPricingContext

Pricing context (customer, quantity and pricing method) SalesPricingContext

X

Content Type
  • application/json

Responses
Table 117. http response codes
Code Message Datatype

200

The pricing information has been successfully loaded

PricingInformation

400

Not Found - There is no sold item 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

Samples
Body parameter
Click to expand

{
  "quantity" : 4,
  "pricingMethodId" : "5000123",
  "referentialPricingDate" : "2020-01-23T04:56:07Z",
  "customerId" : "5000123",
  "currencyCode" : "GBP",
  "referentialDate" : "2020-01-23T04:56:07Z"
}

2.14.2. Get the unit price of a sold item, based on customer, quantity and pricing method

POST

/sold-items/{sold_item_id}/get-unit-price

Deprecated
Tip
Use new API POST /sold-items/{sold_item_id}/get-pricing-information
View
Description

Get the unit price of a sold item, based on customer, quantity and pricing method

DMF required:
  • DMF A63207: Api Settings / Pricing Method / Get Unit Price

  • DMF 020201: Sales / Quotations / New

  • DMF 020202: Sales / Quotations / Modify

  • DMF 020217: Sales / Quotations / Modify Signed Quotation

  • DMF 020225: Sales / Quotations / Modify Unsigned Ordered Quotation

  • DMF 020226: Sales / Quotations / Modify Quotation Submitted For Approval

  • DMF 020234: Sales / Quotations / Modify Reviewed Quotation

  • DMF 020301: Sales / Sales Orders / New

  • DMF 020302: Sales / Sales Orders / Modify

  • DMF 020314: Sales / Sales Orders / Modify Validated Sales Order

  • DMF 020325: Sales / Sales Orders / Modify Sales Order Submitted For Approval

  • DMF 020331: Sales / Sales Orders / Review Prices

Parameters
Path Parameters
Name Description Required Default Pattern

sold_item_id

The id of a sold item

X

null

Body Parameter
Name Description Required Default Pattern

SalesPricingContext

Pricing context (customer, quantity and pricing method) SalesPricingContext

X

Content Type
  • application/json

Responses
Table 118. http response codes
Code Message Datatype

200

The unit price successfully loaded

UnitPrice

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

{
  "quantity" : 4,
  "pricingMethodId" : "5000123",
  "referentialPricingDate" : "2020-01-23T04:56:07Z",
  "customerId" : "5000123",
  "currencyCode" : "GBP",
  "referentialDate" : "2020-01-23T04:56:07Z"
}

2.14.3. Get a sold item with additional information of your choice.

POST

/sold-items/{sold_item_id}/read

Description

Get a sold item with additional information of your choice.
You can add this information with Read Options.

DMF required:
  • DMF AB0606: Api Sales / Sold Items / Infos

  • DMF 050206: Inventory / Sold Products / Show History

Parameters
Path Parameters
Name Description Required Default Pattern

sold_item_id

The id of a sold item

X

null

Body Parameter
Name Description Required Default Pattern

read_option

The read options for returned sold item SoldItemReadOption

-

Content Type
  • application/json

Responses
Table 119. http response codes
Code Message Datatype

200

The sold item has been successfully loaded

SoldItem

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" : [ "PRODUCTION_INFORMATIONS", "PRODUCTION_INFORMATIONS" ]
}

2.14.4. Search for sold items (with search criteria)

POST

/sold-items/search

Description

Get the list of sold items matching the search criteria.

DMF required:
  • DMF AB0604: Api Sales / Sold Items / Search

  • DMF 050204: Inventory / Sold Products / Search

  • DMF 020202: Sales / Quotations / Modify

Parameters
Body Parameter
Name Description Required Default Pattern

criteria

Criteria that you choose (ID, Customer, etc…) SoldItemCriteria

X

Content Type
  • application/json

Responses
Table 120. http response codes
Code Message Datatype

200

Sold items successfully loaded

List[SoldItem]

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" : "*"
  },
  "billingMode" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "linkedToAdvancePayments" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "entityId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "customData" : {
    "key" : {
      "operator" : "IS",
      "value" : "{}",
      "includeNullResults" : false
    }
  },
  "subCategoryId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "inventory" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "grouping" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "readOption" : {
    "options" : [ "PRODUCTION_INFORMATIONS", "PRODUCTION_INFORMATIONS" ]
  },
  "reference" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "teamId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "defaultDisplay" : {
    "operator" : "IS",
    "value" : false,
    "includeNullResults" : false
  },
  "name" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "id" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "validity" : {
    "date" : "2000-01-23T04:56:07.000+00:00"
  },
  "tag" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "marketEndDate" : {
    "operator" : "IS",
    "value" : "2000-06-21T04:56:07.000+00:00",
    "includeNullResults" : false,
    "withTime" : false
  },
  "categoryId" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  },
  "packagingType" : {
    "operator" : "IS",
    "value" : "Abcd",
    "includeNullResults" : false,
    "wildcards" : "*"
  }
}

2.15. Time Based Billing

2.15.1. Bill customer with time-based billing

POST

/time-based-billing/customer/{customer_id}/deliveries/generate-and-bill

Description

Bill all ongoing orders of the specified customer using time-based billing.

DMF required:
  • DMF AB0410: Api Sales / Deliveries / Time-based Billing

  • DMF 020433: Sales / Deliveries / Time-based Billing For Orders

Parameters
Path Parameters
Name Description Required Default Pattern

customer_id

The id of the customer

X

null

Body Parameter
Name Description Required Default Pattern

objects_to_delivery

The parameters for a time-based billing of a customer sales order and expenses ObjectsToDeliveryTimeBasedBilling

X

Content Type
  • application/json

Responses
Table 121. http response codes
Code Message Datatype

200

Delivery numbers

List[[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

{
  "timesComplementName" : true,
  "groupTimesAndExpenses" : true,
  "temporaryBilling" : true,
  "deliveryDate" : "2020-01-31T23:59:59Z",
  "invoiceDate" : "2020-01-31T23:59:59Z",
  "lines" : [ {
    "orderId" : "5000123",
    "orderLineId" : "5000123",
    "quantity" : 2,
    "timeRecordingIds" : [ "timeRecordingIds", "timeRecordingIds" ]
  }, {
    "orderId" : "5000123",
    "orderLineId" : "5000123",
    "quantity" : 2,
    "timeRecordingIds" : [ "timeRecordingIds", "timeRecordingIds" ]
  } ],
  "expensesComplementName" : true,
  "expenseIds" : [ 5000123, 5000456, 5000789 ]
}

2.15.2. Bill sales order with time-based billing

POST

/time-based-billing/sales-order/{sales_order_id}/bill

Description

Bill the order given in parameter with time-based billing.

DMF required:
  • DMF AB0410: Api Sales / Deliveries / Time-based Billing

  • DMF 020433: Sales / Deliveries / Time-based Billing For Orders

Parameters
Path Parameters
Name Description Required Default Pattern

sales_order_id

The id of the sales order

X

null

Body Parameter
Name Description Required Default Pattern

objects_to_delivery

Parameters for a time-based billing of an order ObjectsToDeliveryTimeBasedBilling

X

Content Type
  • text/plain

Responses
Table 122. http response codes
Code Message Datatype

200

Delivery number

[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

{
  "timesComplementName" : true,
  "groupTimesAndExpenses" : true,
  "temporaryBilling" : true,
  "deliveryDate" : "2020-01-31T23:59:59Z",
  "invoiceDate" : "2020-01-31T23:59:59Z",
  "lines" : [ {
    "orderId" : "5000123",
    "orderLineId" : "5000123",
    "quantity" : 2,
    "timeRecordingIds" : [ "timeRecordingIds", "timeRecordingIds" ]
  }, {
    "orderId" : "5000123",
    "orderLineId" : "5000123",
    "quantity" : 2,
    "timeRecordingIds" : [ "timeRecordingIds", "timeRecordingIds" ]
  } ],
  "expensesComplementName" : true,
  "expenseIds" : [ 5000123, 5000456, 5000789 ]
}

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. Action

Verb of the request to specify which type of action you will send.

Type : enum (ADD, UPDATE, REMOVE)

3.5. 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.6. 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.7. 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.8. 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.9. 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.10. 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.11. AdditionalFreeFieldsCriteria

Search criteria for additional free fields

Field Name Required Type Description Format

additionalFreeField1

ClauseString

additionalFreeField2

ClauseString

additionalFreeField3

ClauseString

additionalFreeField4

ClauseString

additionalFreeField5

ClauseString

3.12. 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.13. 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.14. AmortizationMethod

The method of amortization

Type : enum (LINEAR, SLIDING_SCALE)

3.15. AmountCategoryType

Amount Category (Unitary/Total)

Type : enum (UNITARY, TOTAL)

3.16. 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.17. 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.18. 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.19. ApprovalState

State of the Approval

Type : enum (NONE, TO_REQUEST, TO_APPROVE, REFUSED, APPROVED)

3.20. 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 archiving reason
Example : 5000152

3.21. 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.22. 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.23. 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.24. 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.25. 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.26. 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.27. AssignmentSubType

Subtype of Assignment

Type : enum (PROJECT_GROUP, DEPARTMENT, ACTIVITY, CATEGORY, SUB_CATEGORY, SUB_CATEGORY_2, PROJECT_STATE, YEAR)

3.28. AssignmentType

Type of Assignment

Type : enum (COMPANY, DIVISION_GROUP, DIVISION, ENTITY, CUSTOMER, PROJECT, PHASE, SUBPHASE, PROJECT_TASK)

3.29. 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.30. 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.31. 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.32. 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.33. 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.34. 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.35. BankType

Type of the bank (nature de banque) for international bank detail

Type : enum (BIC, ABA, NOT_DEFINED)

3.36. 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.37. BankingInformationStatus

The status of the Banking Information

Type : enum (VALIDATED, TO_VALIDATE, REFUSED)

3.38. 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.39. BankingInformationSupplierType

Supplier type of banking information

Type : enum (ALL, INTERNAL, EXTERNAL, VIRTUAL)

3.40. BankingInformationType

List of banking information type

Type : enum (SEPA, INTERNATIONAL_BANK)

3.41. BaseRate

Base rate for all sold items

Field Name Required Type Description Format

endDate

[Date]

End date of the base rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

entity

Entity

Details about the entity.
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

fixedAmountName

[String]

Name of fixed amount before tax
Example : Lorem ipsum

id

[String]

ID in database of base rate
Example : 5000123

item

ItemBase

Details about the sold item.
Remark : In add APIs (mainly PUT requests) item model is not expected, use the itemId field instead.

itemId

[String]

The ID of the sold item.
Example : 5000124

name

[String]

The description of the base rate
Example : Lorem Ipsum

percentDiscount

[Double]

Percentage reduction that will be applied to the unit price at this base rate
Example : 10

double

preTaxFixedAmount

[Double]

Fixed amount before tax
Example : 500

double

price

[Double]

Base unit price available from the threshold quantity
Example : 3500

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

ranking

[String]

Rank number of the base rate
Example : 2

startDate

[Date]

Start date of the base rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

threshold

[Double]

Quantity threshold to be reached to activate the price at the following base rate
Example : 10

double

3.42. 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.43. BaseRateCriteria

Criteria used to get more details about the base rate.

Field Name Required Type Description Format

companyId

ClauseString

ID of the company

entityId

ClauseString

ID of the entity

id

ClauseString

The ID in database of the base rate

itemId

ClauseString

ID of a sold item

pricingMethodId

ClauseString

The ID of the pricing method

readOption

BaseRateReadOption

Options for retrieving extra information concerning the base rate

validity

Validity

Details about validity of the base rate

3.44. BaseRateReadOption

Options used to get additional information on base rate

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the base rate

Enum: PRICING_METHOD, SOLD_ITEM, ENTITY

3.45. 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.46. BatchParameter

Parameter used to manage batch operations

Field Name Required Type Description Format

ids

List of [string]

Ids of the objects

3.47. BatchPostponeDeliveryLines

Object used to postpone delivery lines.
The start date or end date of the line can be postponed by setting a precise date, shifting by a period, or resetting the date.

Field Name Required Type Description Format

endDate

Postpone

New period end date.
The end date can be postponed without modifying the start date.
The dates must remain consistent, meaning the end date must be later than the start date.

ids

List of [string]

Ids of the objects

startDate

Postpone

New period start date.
The start date can be postponed without modifying the end date.
The dates must remain consistent, meaning the end date must be later than the start date.

3.48. 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.49. BatchUpdateDeliveryLines

Object for batch updating certain fields in delivery lines.

Field Name Required Type Description Format

phaseId

[String]

This field can be updated if the assignmentIndicator field of the delivery is set to SINGLE_PROJECT_MULTI_PHASES or MULTI_PROJECTS.
Otherwise, the update is ignored if the assignmentIndicator field of the delivery is set to SINGLE_PROJECT_MONO_PHASE.

Example : 5000123

projectId

[String]

This field can be updated if the assignmentIndicator field of the delivery is set to MULTI_PROJECTS.
Otherwise, the update is ignored if the assignmentIndicator field of the delivery is set to SINGLE_PROJECT_MONO_PHASE or SINGLE_PROJECT_MULTI_PHASES.

Example : PRJT_001

projectTaskId

[String]

ID of the project task
Example : 5000123

subPhaseId

[String]

This field can be updated if the assignmentIndicator field of the delivery is set to SINGLE_PROJECT_MULTI_PHASES or MULTI_PROJECTS.
Otherwise, the update is ignored if the assignmentIndicator field of the delivery is set to SINGLE_PROJECT_MONO_PHASE.

Example : 5000123

3.50. BatchUpdateQuotationLines

Object for batch updating certain fields in quotation lines.

Field Name Required Type Description Format

ids

List of [string]

Ids of the objects

isScheduled

[Boolean]

Set to 'true' if the line is to be marked as scheduled.
Set to 'false' if the line is to remain unscheduled.
All selected lines will be updated in batch.

Example : true

3.51. 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.52. BillingMode

Billing mode of a sales line

Type : enum (TIME_BASED, FIXED_PRICE, RECURRENT, PRODUCTION_TO_BE_BILLED)

3.53. 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.54. 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.55. 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.56. 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.57. 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.58. 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.59. 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.60. 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.61. 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.62. CancelDeliveryParameters

Parameters required to cancel a delivery.

Field Name Required Type Description Format

cancellingDate

[Date]

The date on which the delivery was canceled.
Example : 2020-01-23T04:56:07Z

date-time

salesOrderDate

[Date]

The date of the canceled order associated to the delivery.
Example : 2020-01-23T04:56:07Z

date-time

3.63. 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.64. 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.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. ChorusCriteria

Criteria used to get more details about chorus properties.

Field Name Required Type Description Format

commitmentNumber

ClauseString

contractNumber

ClauseString

effectiveDate

ClauseDate

Criteria for the chorus effective date

marketName

ClauseString

serviceCode

ClauseString

Code of Chorus service.

serviceName

ClauseString

Name of Chorus service.

3.70. 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.71. ChorusProperties

Chorus properties

Field Name Required Type Description Format

commitmentNumber

[String]

Commitment number
Example : 5000123

contractNumber

[String]

Number of the contract
Example : 5000123

effectiveDate

[Date]

Effective date
Example : 2020-01-31T23:59:59Z

date-time

marketName

[String]

Name of the market
Example : Lorem ipsum

serviceCode

[String]

Code of Chorus service
Example : Z-FDJ-CA

serviceName

[String]

Name of Chorus service
Example : SCA

3.72. 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.73. 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.74. 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.75. 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.76. 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.77. 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.78. 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.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. 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.87. 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.88. 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.89. 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.90. 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.91. 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.92. 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.93. 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.94. 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.95. 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.96. 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.97. 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.98. 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.99. CustomDataType

Type of the CustomData

Type : enum (NUMBER, DATE, BOOLEAN, ALPHANUMERIC)

3.100. 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.101. 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.102. 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.103. 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.104. CustomerRate

Customer rate that applies to a particular customer.

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]

The ID of the customer.
Example : 5000123

endDate

[Date]

End date of the base rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

fixedAmountName

[String]

Name of fixed amount before tax
Example : Lorem ipsum

id

[String]

ID in database of base rate
Example : 5000123

item

ItemBase

Details about the sold item.
Remark : In add APIs (mainly PUT requests) item model is not expected, use the itemId field instead.

itemId

[String]

The ID of the sold item.
Example : 5000124

name

[String]

The description of the base rate
Example : Lorem Ipsum

percentDiscount

[Double]

Percentage reduction that will be applied to the unit price at this base rate
Example : 10

double

preTaxFixedAmount

[Double]

Fixed amount before tax
Example : 500

double

price

[Double]

Base unit price available from the threshold quantity
Example : 3500

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

ranking

[String]

Rank number of the base rate
Example : 2

startDate

[Date]

Start date of the base rate
Example : 2020-01-23T04:56:07.000+00:00

date-time

threshold

[Double]

Quantity threshold to be reached to activate the price at the following base rate
Example : 10

double

3.105. CustomerRateCriteria

Criteria used on base rate when doing a customer rate search.

Field Name Required Type Description Format

companyId

ClauseString

ID of the company

customerId

ClauseString

The ID of the customer

id

ClauseString

The ID of the customer rate

itemId

ClauseString

ID of a sold item

pricingMethodId

ClauseString

The ID of the pricing method

readOption

CustomerRateReadOption

Options for retrieving extra information concerning the customer rate

validity

Validity

Details about validity of the customer rate

3.106. CustomerRateReadOption

Options used to get additional information on customer rate

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the customer rate

Enum: PRICING_METHOD, SOLD_ITEM, CUSTOMER

3.107. 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.108. 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.109. CustomizableResources

Customizable resources (Ressources personnalisables)

Type : enum (ISSUE, OPPORTUNITY, OPPORTUNITY_LINE, CUSTOM_REQUEST, EVENT, PROJECT, PHASE, SUB_PHASE, EMPLOYEE, CUSTOMER, CONTACT, SALES, PURCHASE)

3.110. 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.111. DayMoment

The moment in a day.

Type : enum (MORNING, AFTERNOON)

3.112. Delivery

Delivery

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.
Remark : This property is read-only and provides current data without allowing modifications.

accountingJournalId

[String]

ID of Accounting Journal
Example : 1203
Remark : This property is read-only and provides current data without allowing modifications.

afterTaxAmount

[Double]

After-Tax amount expressed in company currency
Example : 120.37
Remark : This property is read-only and provides current data without allowing modifications.

double

afterTaxAmountCurrency

[Double]

After-Tax amount in the currency
Example : 1500
Remark : This property is read-only and provides current data without allowing modifications.

double

approvalDate

[Date]

Date of approval
Example : 2020-01-23T04:56:07.000+00:00
Remark : This property is read-only and provides current data without allowing modifications.

date-time

approvalState

ApprovalState

State of approval
Example : NONE
Remark : This property is read-only and provides current data without allowing modifications.

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
Remark : This property is read-only and provides current data without allowing modifications.

billingDate

[Date]

The date when the delivery was billed.
Example : 2025-02-02T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

billingSite

CustomerSiteBase

All details about the customer site for the billing.

Remark : This property is read-only and provides current data without allowing modifications.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

billingTableId

[String]

Billing table id
Example : 5001168
Remark : This property is read-only and provides current data without allowing modifications.

cancellingDate

[Date]

The date when the delivery was canceled.
Example : 2025-02-02T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

changeTracking

ChangeTracking

Remark : This property is read-only and provides current data without allowing modifications.

chorusProperties

ChorusProperties

Chorus properties
Remark : This property is read-only and provides current data without allowing modifications.

companyCode

[String]

The company code
Example : AKSAS
Remark : This property is read-only and provides current data without allowing modifications.

companyId

[String]

ID of the company
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

conditionOfPayment

ConditionOfPayment

Remark : This property is read-only and provides current data without allowing modifications.

currency

Currency

Currency used in the management object
Remark : This property is read-only and provides current data without allowing modifications.

currencyCode

[String]

Code of the currency used in the management object
Example : EUR
Remark : This property is read-only and provides current data without allowing modifications.

customData

Map of CustomData

The custom data (when present)
Remark : This property is read-only and provides current data without allowing modifications.

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.
Remark : This property is read-only and provides current data without allowing modifications.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

customerId

[String]

Id of the customer
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.
Remark : This property is read-only and provides current data without allowing modifications.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00
Remark : This property is read-only and provides current data without allowing modifications.

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

Remark : This property is read-only and provides current data without allowing modifications.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

description

[String]

Description
Example : Lorem ipsum

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead
Remark : This property is read-only and provides current data without allowing modifications.

entityId

[String]

ID of the entity
Example : 5000123

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
Remark : This property is read-only and provides current data without allowing modifications.

double

externalReference

[String]

External reference
Example : Lorem Ipsum

fiscalYear

FiscalYearBase

Belonging fiscal year
Remark : In add APIs (mainly PUT requests) fiscalYear model is not expected, use the fiscalYearId field instead.
Remark : This property is read-only and provides current data without allowing modifications.

fiscalYearId

[String]

Id of the fiscalYear
Example : 5000123

group

[Boolean]

Group object

groupingCode

[String]

Grouping code.
Example : CUSTOM_GROUP

id

[String]

Id in database
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

internal

[Boolean]

Internal object

invoiceId

[String]

Invoice id
Example : 5568912
Remark : This property is read-only and provides current data without allowing modifications.

lines

List of DeliveryLine

List of the delivery's lines with their details
Remark : This property is read-only and provides current data without allowing modifications.

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
Remark : This property is read-only and provides current data without allowing modifications.

name

[String]

Name of the management object
Example : Label for my doc

number

[String]

The number of the management object
Example : CC00001
Remark : This property is read-only and provides current data without allowing modifications.

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects
Remark : This property is read-only and provides current data without allowing modifications.

orderId

[String]

Order id
Example : CC2500005
Remark : This property is read-only and provides current data without allowing modifications.

origin

DeliveryOrigin

Code of the delivery's origin.
Example : CO_CONTRACTING
Remark : This property is read-only and provides current data without allowing modifications.

payment (Deprecated)

Payment

Deprecated : Use conditionOfPayment instead
Remark : This property is read-only and provides current data without allowing modifications.

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.
Remark : This property is read-only and provides current data without allowing modifications.

phaseId

[String]

ID of the phase
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

preTaxAmount

[Double]

Pre-Tax Amount expressed in company currency
Example : 100.14
Remark : This property is read-only and provides current data without allowing modifications.

double

preTaxAmountCurrency

[Double]

Pre-Tax Amount in the currency
Example : 100.14
Remark : This property is read-only and provides current data without allowing modifications.

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.
Remark : This property is read-only and provides current data without allowing modifications.

pricingMethodId

[String]

The id of the pricing method
Example : 5000125
Remark : This property is read-only and provides current data without allowing modifications.

project

ProjectBase

All details about the project
Remark : In add APIs (mainly PUT requests) project model is not expected, use the projectId field instead.
Remark : This property is read-only and provides current data without allowing modifications.

projectId

[String]

ID of the project (equivalent to the code of the project)
Example : PRJT_001
Remark : This property is read-only and provides current data without allowing modifications.

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.
Remark : This property is read-only and provides current data without allowing modifications.

projectTaskId

[String]

Id of the project task
Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

projectedBillingDate

[Date]

The date when the delivery must be billed
Example : 2025-05-23T04:56:07Z

date-time

quotationId

[String]

Signed quotation id
Example : CC2500004
Remark : This property is read-only and provides current data without allowing modifications.

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

Remark : This property is read-only and provides current data without allowing modifications.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

Example : 5000123
Remark : This property is read-only and provides current data without allowing modifications.

signatureDate

[Date]

The date when the delivery was signed.
Example : 2025-06-26T04:56:07Z
Remark : This property is read-only and provides current data without allowing modifications.

date-time

state

DeliveryState

Details about the state of the delivery.
Example : BILLED
Remark : This property is read-only and provides current data without allowing modifications.

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.
Remark : This property is read-only and provides current data without allowing modifications.

subPhaseId

[String]

ID of the sub-phase
Example : 51000122
Remark : This property is read-only and provides current data without allowing modifications.

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01
Remark : This property is read-only and provides current data without allowing modifications.

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02
Remark : This property is read-only and provides current data without allowing modifications.

titleLines

List of LineTitle

List of the quotation's title lines
Remark : This property is read-only and provides current data without allowing modifications.

type

ManagementObjectType

Example : QUOTATION
Remark : This property is read-only and provides current data without allowing modifications.

3.113. DeliveryCriteria

Search criteria for deliveries

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

billingSiteId

ClauseString

The id of the customer site for billing.

billingState

StatusFilter

Filtering criteria based on the billing state of the delivery, to return whether the delivery is billed or not.

billingTableId

ClauseString

Billing table id

cancellingState

StatusFilter

Filtering criteria based on the cancellation state of the delivery, to return whether the delivery is canceled or not.

changeTracking

ChangeTrackingCriteria

Change tracking criteria

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

deliverySiteId

ClauseString

The id of the customer site for delivery.

description

ClauseString

Description of the management object

entityCode

ClauseString

Entity code of the management object

externalReference

ClauseString

External reference

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

invoiceId

ClauseString

Invoice id

journalId

ClauseString

Id of the journal

lineCriteria

DeliveryLineCriteria

Criteria on lines of the delivery

managerId

ClauseString

Id of the manager linked with the management object

markedAsBillingState

StatusFilter

Filtering criteria based on the billing status without an associated invoice, to return deliveries that are billed without an associated invoice or not.

methodOfPayment

ClauseString

Method of payment of the management object

name

ClauseString

Name of the management object

opportunityId

ClauseString

Id of the opportunity

orderId

ClauseString

Order id

origin

ClauseString

Code of the delivery's origin.

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

projectedBillingDate

ClauseDate

The date when the delivery must be billed

quotationId

ClauseString

Signed quotation id

readOption

DeliveryReadOption

Options for retrieving extra information concerning the delivery

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

signatureDate

ClauseDate

The date when the delivery was signed.

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.114. DeliveryLine

Delivery 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

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

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

helpdeskProperties

HelpdeskProperties

Helpdesk properties

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

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.115. DeliveryLineCriteria

Criteria used to get more details about delivery lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

serialNumber

ClauseString

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

3.116. DeliveryOrigin

Code of the delivery's origin.

Type : enum (CO_CONTRACTING, SUB_CONTRACTING, MAINTENANCE_CONTRACT, MIN_PURCHASE, EXPENSE_REPORT, TRAINING, TIME, TIME_BASED, GROUP_SUB_CONTRACTING_ASSEMBLED, DELIVERY)

3.117. DeliveryReadOption

The options you can use to get more information about the delivery.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the delivery

Enum: CHANGE_TRACKING, CUSTOMER, CUSTOMER_TO_BILL, ACCOUNTING_JOURNAL, FISCAL_YEAR, CURRENCY, MANAGER, ENTITY, PROJECT, PHASE, SUB_PHASE, PRICING_METHOD, CUSTOM_DATA, LINE_ADDITIONAL_FREE_FIELDS, LINE_FORM_CONFIG, LINE_PROJECT, LINE_PHASE, LINE_SUB_PHASE, LINE_PROJECT_TASK, LINE_ITEM, LINE_ITEM_CATEGORY, LINE_ITEM_SUBCATEGORY, LINE_RESOURCE, OBJECT_HISTORY_LINKS, FORM_CONFIG, LINE_HELPDESK, LINE_HELPDESK_CONTRACT, LINE_HELPDESK_CHECKBOOK, LINE_HELPDESK_TASK, DELIVERY_ADDRESS, BILLING_ADDRESS

3.118. DeliveryState

Delivery State

Type : enum (BILLED, NOT_BILLED, MARKED_AS_BILLED, CANCELED)

3.119. DeliveryToInvoiceConversion

Object that enables the conversion of a delivery into an invoice.

Field Name Required Type Description Format

billingDate

[Date]

The date when the delivery is billed. This field is set automatically to current date if null.
Example : 2020-01-23T04:56:07Z

date-time

expectedPaymentDate

[Date]

The date when the payment is expected to be received.
Example : 2020-01-23T04:56:07Z

date-time

factoring

[Boolean]

Set to true to indicate that the invoice has been factored, meaning it has been assigned to a factoring company.
Factoring marks the invoice as 'assigned to factor.'

Example : false

invoiceDescription

[String]

A description of the invoice.
This description will be included in the created invoice.

Example : Text

3.120. DematerializationStatus

Liste of dematerialization status

Type : enum (NO_TRANSMISSION, TO_TRANSMIT, SENT, TRANSMISSION_DENIED, REJECTION_PROCESSED)

3.121. 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.122. 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.123. DiscountType

Type of discount

Type : enum (PERCENT, AMOUNT)

3.124. 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.125. 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.126. 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.127. 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.129. 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.130. 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.131. DueDateCriteria

Criteria used to get more details about the due date

Field Name Required Type Description Format

invoiceId

ClauseString

Ident of the invoice

3.132. 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.133. 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.134. 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.135. 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.136. ESignatureSignatoryType

Defines the type of signatory for electronic signatures.
A signatory can be either an employee or a contact.

Type : enum (CONTACT, EMPLOYEE)

3.137. ESignatureStatus

Electronic signature status of a management object

Type : enum (IN_PROGRESS, CANCELED, EXPIRED, SIGNED, FAILED, PENDING, SIGNATURE_REQUESTED)

3.138. 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.139. 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.140. 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.141. 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.142. 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.143. 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.144. 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.145. 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.146. 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.147. 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.148. 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.149. 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.150. 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.151. 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.152. 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.153. 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.154. FixedAssetType

Type of fixed asset

Type : enum (TANGIBLE, INTANGIBLE, FINANCIAL, NONE)

3.155. 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.156. 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.157. 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.158. 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.159. 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.160. 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.161. HelpdeskCriteria

Criteria used to get more details about Helpdesk.

Field Name Required Type Description Format

contractCheckId

ClauseString

contractNumber

ClauseString

contractVersionId

ClauseString

geographicalArea

ClauseString

taskId

ClauseString

3.162. HelpdeskProperties

Helpdesk properties

Field Name Required Type Description Format

contract

ContractBase

Details about the customer contract
Remark : In add APIs (mainly PUT requests) contract model is not expected, use the contractId field instead.

contractCheck

CheckbookBase

Details about the contract's checkbook
Remark : In add APIs (mainly PUT requests) contractCheck model is not expected, use the contractCheckId field instead.

contractCheckId

[String]

ID of the contract's checkbook
Example : 5000123

contractId

[String]

The ID of the customer contract.
During updates, if 'contractNumber' is filled, this field will not be updated and will always contain the identifier corresponding to the contract number entered in 'contractNumber.'
To update this field, the corresponding contract number must also be provided in 'contractNumber.'

Example : 5000123

contractNumber (Deprecated)

[String]

Number of the customer contract.
The entered contract number must match the contract identifier in the 'contractId' field.
During updates, the contract number is always given priority over the contract identifier in 'contractId.'
If this field is modified or set to null, the 'contractId' will be automatically updated accordingly.

Example : CC202005
Deprecated : This field is deprecated and will be removed in future versions.

contractVersionId

[String]

ID of the contract's version
Example : 5000123

geographicalArea

[String]

Geographical area
Example : EUROPE

task

HelpdeskTask

Details about the halpdesk task
Remark : In add APIs (mainly PUT requests) task model is not expected, use the taskId field instead.

taskId

[String]

ID of the related task
Example : 5000123

3.163. HelpdeskTask

Contains information about helpdesk tasks and their related issues.

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

issueId

[String]

Id of the related issue
Example : 5000123

issueNumber

[String]

Number of the related issue
Example : 253030000

issueTitle

[String]

The title of the related issue
Example : Text

number

[String]

CNumber of the task.
Example : 1

3.164. 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.165. 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.166. HistoryEntryType

Type of the entry

Type : enum (HEADER, DETAIL)

3.167. 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.168. 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.169. 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.170. IdIdentifiable

Basic type for all pojos with an API ID

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.171. 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.172. 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.173. 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.174. 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.175. Invoice

Invoice

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

balance

[Double]

Balance
Example : 120.37

double

billingSite

CustomerSiteBase

All details about the customer site for the billing.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123

bookedOn

[Date]

Date on which the invoice is booked. This is set automatically.
Example : 2020-01-23T04:56:07Z

date-time

changeTracking

ChangeTracking

chorusProperties

ChorusProperties

Chorus properties

chorusStatus

[String]

Status of the e-invoice in Chorus.
Example : SUBMITTED
Remark : This property is read-only and provides current data without allowing modifications.

chorusTransactionId

[String]

ID (UUID) of the Chorus transaction.
Example : 550e8400-e29b-41d4
Remark : This property is read-only and provides current data without allowing modifications.

comment

[String]

Comment
Example : Lorem ipsum

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)

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z

date-time

customerId

[String]

Id of the customer
Example : 5000123

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

dematerializationStatus

DematerializationStatus

Invoice dematerialization status.
Example : NO_TRANSMISSION

description

[String]

Description
Example : Lorem ipsum

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

entityId

[String]

ID of the entity
Example : 5000123

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

invoiceType

InvoiceTypeEnum

Details about the invoice's type
Example : INVOICE

lines

List of InvoiceLine

List of the invoice's lines with their details

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

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects

origin

SalesInvoiceOrigin

Code of the sales invoice's origin

Example : CO_CONTRACTING

paidOn

[Date]

Date on which the invoice is paid. This is set automatically.
Example : 2020-01-23T04:56:07Z

date-time

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

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

Example : 5000123

sentOn

[Date]

Date on which the invoice is sent. This is set automatically.
Example : 2020-01-23T04:56:07Z

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

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02

titleLines

List of LineTitle

List of the quotation's title lines

transmissionDate

[Date]

Transmission date of dematerialized invoice.
This field is automatically set to the date when the dematerialization status changes to 'Sent'.

Example : 2020-01-23T04:56:07Z

date-time

type

ManagementObjectType

Example : QUOTATION

3.176. InvoiceCriteria

Search criteria for invoices

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

balance

ClauseDouble

Balance

billingSiteId

ClauseString

The id of the customer site for billing.

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

chorusStatus

ClauseString

Status of the e-invoice in Chorus.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

deliverySiteId

ClauseString

The id of the customer site for delivery.

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

lineCriteria

InvoiceLineCriteria

Criteria on lines of the invoice

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

opportunityId

ClauseString

Id of the opportunity

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

readOption

InvoiceReadOption

Options for retrieving extra information concerning the invoice

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.177. InvoiceLine

Invoice 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

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

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

helpdeskProperties

HelpdeskProperties

Helpdesk properties

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

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.178. InvoiceLineCriteria

Criteria used to get more details about invoice lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

deliveryId

ClauseString

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

3.179. InvoiceReadOption

The options you can use to get more information about the invoice.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the invoice

Enum: CHANGE_TRACKING, CUSTOMER, CUSTOMER_TO_BILL, ACCOUNTING_JOURNAL, FISCAL_YEAR, CURRENCY, PAYMENT, CONDITION_OF_PAYEMENT, MANAGER, ENTITY, PROJECT, PHASE, SUB_PHASE, PRICING_METHOD, CUSTOM_DATA, LINE_ADDITIONAL_FREE_FIELDS, LINE_PROJECT, LINE_PHASE, LINE_SUB_PHASE, LINE_PROJECT_TASK, LINE_ITEM, LINE_ITEM_CATEGORY, LINE_ITEM_SUBCATEGORY, LINE_RESOURCE, OBJECT_HISTORY_LINKS

Details of the invoice to be linked to the delivery.

3.181. InvoiceTypeEnum

Invoice type

Type : enum (INVOICE, CREDIT)

3.182. IssueBase

Issue base

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.183. 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.184. 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.185. 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.186. ItemBase

Item

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.187. 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.188. 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.189. 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.190. JournalType

Type of journal

Type : enum (SALES, PURCHASE, BANK, TRANSACTION, SIMULATION)

3.191. LineTitle

Title line

Field Name Required Type Description Format

lineTitleId

[Double]

Id of the title line
Example : 5000123

double

lineTitleLabel

[String]

Label of the title line
Example : Maintenance

parentLineTitleId

[Double]

Id of the parent title line
Example : 5000123

double

3.192. LinkDirectionEnum

A filation link type can be set with a link direction

Type : enum (ASCENDING, DESCENDING, TRANSVERSE, NOT_APPLICABLE)

3.193. 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.194. 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.195. 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.196. 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.197. 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.198. 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.199. 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.200. 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.201. 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.202. 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.203. 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.204. 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.205. ManagementObjectSalesLine

Management object sales line (ligne de pièce de gestion vente)

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

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

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

helpdeskProperties

HelpdeskProperties

Helpdesk properties

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

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.206. 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.207. 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.208. 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.209. 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.210. 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.211. MessageRecipientType

Message recipient type

Type : enum (USER, EMPLOYEE, CONTACT, TEAM, MAIL_ADDRESS)

3.212. 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.213. 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

3.215. ObjectsToDeliveryTimeBasedBilling

The parameters for time-based billing

Field Name Required Type Description Format

deliveryDate

[Date]

Delivery date
Example : 2020-01-31T23:59:59Z

date-time

expenseIds

List of [string]

Ids of the expenses to bill
Example : [5000123,5000456,5000789]

expensesComplementName

[Boolean]

Return true if the number of days, the employee code and the amount should be added to the label
Example : true

groupTimesAndExpenses

[Boolean]

Returns true if the timesheet entries and expenses should be grouped
Example : true

invoiceDate

[Date]

Date of the invoice(s) which will be created
Example : 2020-01-31T23:59:59Z

date-time

lines

List of OrderToDeliveryTimeBasedBilling

Details about orders to be billed

temporaryBilling

[Boolean]

Return True if the delivery should be billed
Example : true

timesComplementName

[Boolean]

Return true if the number of days and the employee code should be added to the label
Example : true

3.216. 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.217. OrderToDelivery

Details of an order line for billing

Field Name Required Type Description Format

orderId

[String]

Id of the order
Example : 5000123

orderLineId

X

[String]

Id of the order's line
Example : 5000123

quantity

[Double]

Quantity
Example : 2

double

3.218. OrderToDeliveryTimeBasedBilling

Details of an order line for time-based billing

Field Name Required Type Description Format

orderId

[String]

Id of the order
Example : 5000123

orderLineId

X

[String]

Id of the order's line
Example : 5000123

quantity

[Double]

Quantity
Example : 2

double

timeRecordingIds

List of [string]

Id of the timesheet entry linked to the order

3.219. 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.220. 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.221. Pack

Details about the pack of product

Field Name Required Type Description Format

afterTaxAmountTotal

[Double]

Total after-Tax amount expressed in company currency
The field is set automatically by the sum of the 'afterTaxAmountTotal' of the pack lines.

Example : 9000
Remark : This property is read-only and provides current data without allowing modifications.

double

amountTotal

[Double]

Total amount expressed in company currency.
The field is set automatically by the sum of the 'totalPrice' of the pack lines.

Example : 8000
Remark : This property is read-only and provides current data without allowing modifications.

double

company

CompanyBase

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

endDate

[Date]

End date of the pack
Example : 2029-01-23T04:56:07Z

date-time

entity

EntityBase

Details 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

grouping

[String]

The grouping of the product
Example : LICENCE

id

[String]

Id in database
Example : 5000123

lines

List of PackLine

List of the pack's lines with their details

name

[String]

The name of the product
Example : English licence

recurrenceOnAllPackLines

[Boolean]

Set to 'true' to apply the recurrence on all pack lines.
Set as 'false' by default.

Example : true

reference

[String]

The reference of the product
Example : ENGLISH

revisionIndexToAllPackLines

[Boolean]

Set to 'true' to apply the revision index to all pack lines.
Set as 'false' by default.

Example : false

3.222. PackCriteria

Criteria used to get more details about pack.

Field Name Required Type Description Format

companyId

ClauseString

ID of the company

grouping

ClauseString

Grouping of the pack

id

ClauseString

ID of the pack

readOption

PackReadOption

Options for retrieving extra information concerning the pack

reference

ClauseString

Reference of the pack

soldItemCriteria

SoldItemCriteria

Criteria on sold item of the pack

tag

ClauseString

You can fill in the reference or name of the tag in this field

validity

Validity

Details about the validity of the pack

3.223. PackLine

Details about a pack'line of product

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

afterTaxAmountTotal

[Double]

Total After-Tax amount expressed in company currency.
Example : 8400

double

itemId (Deprecated)

[String]

The ID of the item.
Example : 5000126
Deprecated : Use soldItemId instead

quantity

[Double]

Quantity of the item
Example : 30

double

ranking

[Integer]

Rank number of the pack line.
The field is automatically set according to the order of the previous pack line.

Example : 2
Remark : This property is read-only and provides current data without allowing modifications.

int32

soldItem

SoldItem

Details about the sold item.
Remark : In add APIs (mainly PUT requests) soldItem model is not expected, use the soldItemId field instead.

soldItemId

[String]

The ID of the sold item.
Example : 5000124

totalPrice

[Double]

Total price before tax, expressed in company currency (unit price * quantity).
Example : 7000

double

unitPrice

[Double]

Unit price of the item expressed in company currency.
Example : 400

double

vat

VATBase

Details about the VAT rate

3.224. PackLineElement

Pack line element

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

elementType

SalesManagementObjectHierarchyElementType

Type of element to be hierarchized
Example : SALES_MANAGEMENT_OBJECT_LINE

id

[String]

ID in database
It's lineId if the elementType is SALES_MANAGEMENT_OBJECT
It's titleId if the elementType is TITLE
It's packId if the elementType is PACK

Example : 5009552

linesHierarchy

List of SalesManagementObjectHierarchyElement

Details about the lines hierarchy element in a management object

name

[String]

Name of the pack
Example : Helpdesk

quantity

[Double]

Quantity of the pack
Example : 3

double

ranking

[Integer]

Location status ranking
Example : 7

int32

3.225. PackReadOption

The options you can use to get more information about the pack.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the pack

Enum: ENTITY, COMPANY, LINE_ITEM

3.226. 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.227. 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.228. 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.230. 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.231. 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.232. 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.233. 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.234. PeopleLinkTypeEnum

A link can be set as a Management Link or a Filiation Link

Type : enum (MANAGEMENT_LINK, FILIATION_LINK)

3.235. 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.236. PeriodGranularity

Granularity of a period

Type : enum (YEAR, MONTH, DAY, HOUR, MINUTE, SECOND)

3.237. 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.238. PeriodicityCodeType

Type of tag

Type : enum (UNIQUE, ANNUAL, BIANNUAL, QUARTERLY, MONTHLY)

3.239. PeriodicityTerms

The list of periodicity terms

Type : enum (A_ECHOIR, ECHU)

3.240. 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.241. 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.242. 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.243. 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.244. PluginFeature

Plugin Feature

Type : enum (BRIDGE, CHORUS, EDOC, PRESTATIONS, UNIVERSIGN, API_GOOGLE, AKUITEO_SAAS)

3.245. 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.246. 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.247. PostponeType

Defines how the date postponement is handled

Type : enum (EXACT_DATE, SHIFT_BY_PERIOD, RESET_DATE)

3.248. PreFillAction

Pre-fill action to perform

Type : enum (CLONE, DEFAULT, FILL_FROM_SOURCE)

3.249. PrefillSourceObjectType

Type of the object used as a source for pre-filling a quotation.

Type : enum (OPPORTUNITY)

3.250. PricingInformation

Object containing elements needed to get the pricing information of a sold item

Field Name Required Type Description Format

percentDiscount

[Double]

Percentage reduction applied to the unit price
Example : 10

double

unitPrice

[Double]

Unit price of the product expressed in company currency
Example : 40

double

unitPriceCurrency

[Double]

Unit price of the product
Example : 40

double

3.251. 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.252. ProbabilityLevel

Probability of the level being accepted.

Type : enum (0, 1, 2, 3, 4, 9)

3.253. Production

Production to be billed parameters when creating a production to be billed on the employee portal and based on the service line of a quotation

Field Name Required Type Description Format

approver

UserBase

Approver in charge of validating or denying the service (corresponding to a manager or a project manager)
Remark : In add APIs (mainly PUT requests) approver model is not expected, use the approverId field instead.

approverId

[String]

ID of the approver
Example : 5000123

billingDate

[Date]

Billing Date of the production to be billed once it has been validated
Example : 2020-01-31T23:59:59Z

date-time

changeTracking

ChangeTracking

Creation and modification date and user

comment

[String]

Comment of the production to be billed (the production's label filled in by default)
Example : Lorem ipsum

denialDate

[Date]

Denial date of the production to be billed
Example : 2020-01-31T23:59:59Z

date-time

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

id

[String]

Id of the production
Example : 5000123

invoiceNumber

[String]

The number of the invoice
Example : FF2200123456

productionCatalog

ProductionCatalog

Details about production catalog
Remark : In add APIs (mainly PUT requests) productionCatalog model is not expected, use the productionCatalogId field instead.

productionCatalogId

[String]

Id of the production catalog
Example : 5000123

quantity

[Double]

Quantity of the production to be billed.
Negative values are allowed to reflect adjustments or corrections.

Example : 3

double

quotation

Quotation

Quotation
Remark : In add APIs (mainly PUT requests) quotation model is not expected, use the quotationId field instead.

quotationId

[String]

Number of the quotation
Example : CD220100001

referentialDate

[Date]

Date of the production to be billed. If the field is not filled in, it takes today's date by default
Example : 2020-01-31T23:59:59Z

date-time

status

ProductionStatus

Status of the production to be billed
Example : NOT_VALIDATED

targetMonth

[String]

Target month of the year for the production
Example : 2024-01

date-month

totalDurations

Durations

The duration of time spent on a production in different units

unitPrice

[Double]

The unit price of the production.
Negative values are allowed to reflect adjustments or corrections.

Example : 36.32

double

validationDate

[Date]

Validation date of the production to be billed
Example : 2020-01-31T23:59:59Z

date-time

3.254. ProductionCatalog

The catalog of production sold items for a given customer available to declare production to be billed.

Field Name Required Type Description Format

billingTargetDay

[Integer]

Billing target day of the month for the production to be billed.
Example : 5

int32

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

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
Remark : This property is read-only and provides current data without allowing modifications.

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

estimatedDuration

[Integer]

The production estimated duration in minutes.
Example : 240

int32

id

[String]

Id in database
Example : 5000123

item

ItemBase

Details about the sold item.
Remark : In add APIs (mainly PUT requests) item model is not expected, use the itemId field instead.

itemId

[String]

The ID of the sold item.
Example : 5000124

label

[String]

Name of the production item
Example : Payroll

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

ProjectTaskCommon

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

quantity

[Double]

Quantity
Example : 2

double

quotationId

[String]

Number of the quotation
Example : CD220100001

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

targetDay

[Integer]

Target day of the month for the production.
Example : 22

int32

unitPrice

[Double]

The unit price of the production
Example : 36.32

double

3.255. ProductionCatalogCriteria

Criteria used on production catalog when doing a production catalog search.The production template needed to create a production to be billed.

Field Name Required Type Description Format

defaultDisplay

ClauseBoolean

Set as “True” to load only productions should be displayed by default. If not specified, all productions are loaded.

employeeId

[String]

Id of the employee.
It loads productions that are available for the employee id set (quotation lines where the employee is set as ressource) and also productions with no employee set as ressource on quotation lines or with a generic ressource set as ressource on quotation lines.
This field can be left empty to load the production catalog.

hideElseAvailableProduction

[Boolean]

Set as true by default. If true, it loads productions that are available for the user connected (quotation line where the user is set as ressource, quotation line with no user set as ressource, quotation line where the user is generic ressource). If false, it loads all productions available.
Example : true

id

ClauseString

Id

itemId

ClauseString

Id of the Item

name

ClauseString

Name

phaseId

ClauseString

Phase id

projectId

ClauseString

Project id

projectTaskId

ClauseString

Project task id

quotationId

ClauseString

Quotation id

readOption

ProductionCatalogReadOption

Options for retrieving extra information concerning the production template

subPhaseId

ClauseString

Sub-phase id

3.256. ProductionCatalogReadOption

The options you can use to get more information about productions to be billed.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the production catalog

Enum: CUSTOMER, PROJECT, PHASE, SUB_PHASE, PROJECT_TASK, EMPLOYEE, SOLD_ITEM

3.257. ProductionCriteria

Criteria

Field Name Required Type Description Format

approverId

ClauseString

billingDate

ClauseDate

The billing date of the production

comment

ClauseString

denialDate

ClauseDate

The denial date of the production

employeeId

ClauseString

id

ClauseString

The ID of the production

invoiceNumber

ClauseString

managementProjectCriteria

ManagementProjectCriteria

quantity

ClauseDouble

The quantity of the production

quotationCriteria

ProductionQuotationCriteria

quotationLineId

ClauseString

readOption

ProductionReadOption

Options for retrieving extra information concerning the production to be billed

referentialDate

ClauseDate

The referential date of the production

status

ClauseString

Status of the production to be billed

targetMonth

ClauseDate

The target month of the production

unitPrice

ClauseDouble

The unit price of the production

validationDate

ClauseDate

The validation date of the production

3.258. 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.259. ProductionProjectCriteria

Criteria used on production project when doing a production project search

Field Name Required Type Description Format

companyId

ClauseString

Ident of the project's company

hideUnsignedQuotation

[Boolean]

True to hide quotation without signature date

quotationState

ClauseString

Details about the state of the quotation

tag

ClauseString

You can use this clause to do a text search on the code and name of the project

3.260. ProductionPublishArguments

The arguments for publishing services for the specified IDs of production to be billed

Field Name Required Type Description Format

ids

List of [string]

List of ids of production to be billed

publishArguments

PublishArguments

Required arguments to publish a document

3.261. ProductionQuotationCriteria

Criteria on quotation's production

Field Name Required Type Description Format

customerId

ClauseString

Quotation's customer

projectId

ClauseString

Quotation's project

quotationId

ClauseString

Quotation's id (number)

3.262. ProductionReadOption

The options you can use to get more information about productions to be billed.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the production

Enum: EMPLOYEE, QUOTATION, QUOTATION_CUSTOMER, PRODUCTION_TEMPLATE, PRODUCTION_TEMPLATE_PROJECT, PRODUCTION_TEMPLATE_PHASE, PRODUCTION_TEMPLATE_SUB_PHASE, PRODUCTION_TEMPLATE_PROJECT_TASK, TOTAL_DURATION, APPROVER, CHANGE_TRACKING, FORM_CONFIG

3.263. ProductionStatus

Production to be billed status

Type : enum (NOT_VALIDATED, VALIDATED, DENIED, BILLED)

3.264. 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.265. 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.266. 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.267. 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.268. 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.269. ProjectCustomerType

Type of relation with the customers

Type : enum (ALL_CUSTOMERS, MULTI_CUSTOMERS, SINGLE_CUSTOMER)

3.270. 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.271. 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.272. ProjectLeaveType

Type of Project leave

Type : enum (WITH_REQUEST, CALENDAR, NO_TIMESHEETS)

3.273. 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.274. 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.275. 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.276. 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.277. 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.278. ProjectType

Project type

Type : enum (EXTERNAL, INTERNAL, ALL)

3.279. 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.280. 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.281. 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.282. 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.283. 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.284. PublishTemplateParameterType

Type of parameter.

Type : enum (TEXT_BOX, LIST_BOX, DATE_BOX, RADIO_BUTTON, CHECK_BOX, COMBO_BOX)

3.285. 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.286. 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.287. 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.288. Quotation

Quotation

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

actualSignatureDate

[Date]

The actual signature date
Example : 2020-02-01T00:00Z

date-time

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

archiveComment

[String]

Comment to describe the archiving reason
Example : Lorem ipsum

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]

ID of the archiveReason
Example : 500000010

archivingDate

[Date]

Date when the quotation was archived
Example : 2020-01-31T23:59:59Z

date-time

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

billingSite

CustomerSiteBase

All details about the customer site for the billing.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123

changeTracking

ChangeTracking

chorusProperties

ChorusProperties

Chorus properties

commissionRate

[Double]

Commission rate due to the sales manager
Example : 50

double

companyCode

[String]

The company code
Example : AKSAS

companyId

[String]

ID of the company
Example : 5000123

conditionOfPayment

ConditionOfPayment

contractNumber (Deprecated)

[String]

Contract Number
Deprecated : Use chorusProperties/contractNumber instead

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)

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z

date-time

customerId

[String]

Id of the customer
Example : 5000123

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

description

[String]

Description
Example : Lorem ipsum

durationOfValidity

[Double]

The quotation's duration of validity in months
Example : 3

double

eSignatureTransactions

List of ESignatureTransaction

List of transactions made for electronic signatures.

edited

[Boolean]

Returns true if the quotation has been edited
Example : true

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

entityId

[String]

ID of the entity
Example : 5000123

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

expectedSignatureDate

[Date]

The expected signature date
Example : 2020-01-31T23:59:59Z

date-time

expenseLines

List of QuotationExpenseLine

List of the quotation's expense lines with their details

externalNumber

[String]

Code of the external software you use.
Example : Salesforce

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

lines

List of QuotationLine

List of the quotation's lines with their details

linesHierarchy

List of SalesManagementObjectHierarchyElement

Hierarchical organization of elements in a quotation.

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

notificationDate

[Date]

Notification date
Example : 2020-01-31T23:59:59Z

date-time

notified

[Boolean]

True if the quotation should be notified
Example : true

number

[String]

The number of the management object
Example : CC00001

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects

opportunity

OpportunityBase

All the information needed about the opportunity
Remark : In add APIs (mainly PUT requests) opportunity model is not expected, use the opportunityId field instead.

opportunityId

[String]

Id of the opportunity
Example : 5000123

origin

SalesOrderOrigin

Code of the sales order's origin
Example : CO_CONTRACTING

payment (Deprecated)

Payment

Deprecated : Use conditionOfPayment instead

periodicity (Deprecated)

Periodicity

Periodicity
Deprecated : This field is deprecated and will be removed in future versions.

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

pipe

PipeBase

The quotation's 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 : 5000678

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

quotationProbability

QuotationProbability

Probability of the quotation being accepted.
Example : 0

recurringAmount

RecurringAmountsInfo

Detail about the recurring amounts of the quotation

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesManager

EmployeeBase

The quotation's 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

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

Example : 5000123

state

QuotationState

Details about the state of the quotation
Example : DRAFT

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

technicalManager

EmployeeBase

Technical manager
Remark : In add APIs (mainly PUT requests) technicalManager model is not expected, use the technicalManagerId field instead.

technicalManagerId

[String]

Id of the technical manager
Example : 5000123

theoricalMargin

[Double]

The quotation's theorical margin

double

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02

titleLines

List of LineTitle

List of the quotation's title lines

type

ManagementObjectType

Example : QUOTATION

validationDate

[Date]

Date when the quotation was validated
Example : 2020-01-31T23:59:59Z

date-time

weightingCoefficient

[Double]

The quotation's weighting coefficient
Example : 0.85

double

3.289. QuotationCloningOptions

Options needed to clone a quotation

Field Name Required Type Description Format

duplicateExpenseLines

[Boolean]

If the quotation to be cloned has 'quotation expense lines' that have been generated, set as 'true' to duplicate the generated 'quotation expense lines' during cloning.
Set as false by default.

Example : false

duplicateSchedule

[Boolean]

If the quotation to be cloned has schedules that have been generated, set as 'true' to duplicate the generated schedule during cloning.
Set as false by default.

Example : false

3.290. QuotationCriteria

Criteria used to get more details about the quotation.

Field Name Required Type Description Format

activeModule

ActiveModule

Example : EXPENSE_REPORTS

actualSignatureDate

ClauseDate

The actual signature date

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

archiveComment

ClauseString

Comment to describe the archiving reason

archiveReasonId

ClauseString

ID of the archiveReason

archivingDate

ClauseDate

Date when the quotation was archived

billingSiteId

ClauseString

The id of the customer site for billing.

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

deliverySiteId

ClauseString

The id of the customer site for delivery.

description

ClauseString

Description of the management object

eSignatureStatus

ClauseString

Status of electronic signature.
This criteria can be used only if the electronic signature is active on quotations.

entityCode

ClauseString

Entity code of the management object

expectedSignatureDate

ClauseDate

The expected signature date

expenseLineCriteria

QuotationExpenseLineCriteria

Criteria on the quotation expense lines

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

lineCriteria

QuotationLineCriteria

Criteria on lines of the quotation

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

notification

ClauseBoolean

Criteria on notification of the quotation

opportunityId

ClauseString

Id of the opportunity

orderSiteId (Deprecated)

ClauseString

Order site
Deprecated : Use salesOrderSiteId

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

quotationProbability

ClauseString

Probability of the quotation being accepted.

readOption

QuotationReadOption

Options for retrieving extra information concerning the quotation

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

state

ClauseString

State of the quotation

technicalManagerId

ClauseString

Technical manager

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.291. QuotationExpenseLine

Quotation expense line

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

actionCode

ActionCodeBase

Details about Action Code
Remark : In add APIs (mainly PUT requests) actionCode model is not expected, use the actionCodeId field instead.

actionCodeId

[String]

The id of the action code
Example : 5000123

coefficient

[Double]

Factor applied to unit cost
Example : 2

double

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
Example : 5000123

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]

The id of the employee
Example : 5000123

endPeriod

[Date]

The date on which the charge should finish
Example : 2020-01-23T04:56:07Z

date-time

exchangeRate

[Double]

Exchange rate to convert the amount from company currency devise into an amount in the relevant currency
Example : 0.9156852

double

expectedDate

[Date]

The date when the charge will be effective
Example : 2020-01-23T04:56:07Z

date-time

id

[String]

Id of the quotation expense line
Example : 5000123

isAutoGenerated

[Boolean]

Define if the quotation expense line has been automatically generated.
Example : true

isGenerated

[Boolean]

Define if a schedule has been generated for the quotation expense line.
Example : true

isGroup

[Boolean]

Define if the quotation expense line is Group
Example : true

isInternal

[Boolean]

Define if the quotation expense line is Internal
Example : true

label

[String]

Quotation expense line label.
Example : Facturation modules Akuiteo

laborCost

[Double]

The field is set automatically with the value of quantity when the type of the quotation expense line is 'SERVICE_PROVIDER'.
Example : 1000
Remark : This property is read-only and provides current data without allowing modifications.

double

laborDuration

[Double]

The field is set automatically with the value of totalCost when the type of the quotation expense line is 'SERVICE_PROVIDER'.
Example : 1000
Remark : This property is read-only and provides current data without allowing modifications.

double

otherCosts

[Double]

All others costs
Example : 600
Remark : This property is read-only and provides current data without allowing modifications.

double

phase

PhaseBase

All details about the phase
Remark : In add APIs (mainly PUT requests) phase model is not expected, use the phaseId field instead.

phaseId

[String]

The id of the phase
Example : 5000123

pricingMethod

PricingMethodBase

Details about the pricing method.
Remark : In add APIs (mainly PUT requests) pricingMethod model is not expected, use the pricingMethodId field instead.

pricingMethodId

[String]

The id of the supplier
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]

The id of the project
Example : 5000123

projectTask

ProjectTaskCommon

All details about the project task
Remark : In add APIs (mainly PUT requests) projectTask model is not expected, use the projectTaskId field instead.

projectTaskId

[String]

The id of the project task
Example : 5000123

purchaseCost

[Double]

The field is set automatically with the result of coefficient multiplicate by the total cost.
Example : 2000
Remark : This property is read-only and provides current data without allowing modifications.

double

purchasedProduct

Item

Details about Purchase item
Remark : In add APIs (mainly PUT requests) purchasedProduct model is not expected, use the purchasedProductId field instead.

purchasedProductId

[String]

The id of the purchased product

quantity

[Double]

The quantity of the expense
Example : 10

double

quotationId

[String]

The id of the quotation to which the expense line is linked
Example : 5000123

quotationLine

QuotationLine

All details about the wording of quotation line.
Remark : In add APIs (mainly PUT requests) quotationLine model is not expected, use the quotationLineId field instead.

quotationLineId

[String]

The id of the wording of quotation line
Example : 5000123

ranking

[Double]

Rank number of the line
Example : 2

double

scheduledInformation

ScheduleSummary

Schedule summary for the quotation expense line.

startPeriod

[Date]

The date on which the charge should begin
Example : 2020-01-23T04:56:07Z

date-time

subPhase

SubPhaseBase

All details about the sub phase
Remark : In add APIs (mainly PUT requests) subPhase model is not expected, use the subPhaseId field instead.

subPhaseId

[String]

The id of the sub phase
Example : 5000123

supplier

SupplierBase

Details about the supplier.
Remark : In add APIs (mainly PUT requests) supplier model is not expected, use the supplierId field instead.

supplierId

[String]

The id of the supplier
Example : 5000123

text

[String]

Free text field
Example : Texte

totalCost

[Double]

The field is set automatically with the result of quantity multiplicate by the unit cost.
Example : 1000
Remark : This property is read-only and provides current data without allowing modifications.

double

totalCostCompanyCurrencyDevise

[Double]

The total cost expressed in company currency
Example : 1000
Remark : This property is read-only and provides current data without allowing modifications.

double

type

X

QuotationExpenseType

Type of the quotation expense line
Example : PURCHASE_ITEM

unitCost

[Double]

The cost of the expense by unit
Example : 100

double

3.292. QuotationExpenseLineCriteria

Criteria used to get more details about the quotation expense line.

Field Name Required Type Description Format

employeeId

ClauseString

The ID of the employee.

id

ClauseString

The ID of the quotation expense in database.

quotationId

ClauseString

The ID of the quotation.

quotationLineId

ClauseString

The ID of the quotation line.

readOption

QuotationExpenseLineReadOption

The read option of quotation expense line.

supplierId

ClauseString

The ID of the supplier.

type

ClauseString

The type of the quotation expense line.

3.293. QuotationExpenseLinePreFillInput

Object containing a quotation expense line to pre-fill and the options needed.

Field Name Required Type Description Format

quotationExpenseLine

X

QuotationExpenseLine

3.294. QuotationExpenseLineReadOption

The options you can use to get more information about the quotation expense line

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the quotation expense line

Enum: EMPLOYEE, SUPPLIER, CURRENCY, TASK, PROJECT, PHASE, SUBPHASE, PRICING_METHOD, PURCHASED_PRODUCT, ACTION_CODE, EXPENSE_LINE_SCHEDULED_INFORMATION, QUOTATION_LINE

3.295. QuotationExpenseType

The list of the quotation expense type.

Type : enum (PURCHASE_ITEM, SERVICE_PROVIDER, OTHER_COSTS)

3.296. QuotationLine

Quotation 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

amountDiscount (Deprecated)

[Double]

The discount amount (when specified percentDiscount is not applicable)
Example : 50
Deprecated : Use discount/amount instead

double

amountTotal

[Double]

Total amount expressed in company currency
Example : 1200

double

amountTotalCurrency

[Double]

Total amount in the currency
Example : 1200

double

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

complementName

[String]

Description of the line
Example : Lorem ipsum

contractDate

[Date]

Date of contract
Example : 2020-01-23T04:56:07Z

date-time

contractNumber (Deprecated)

[String]

The contract number
Example : CC2017_HDI
Deprecated : Use helpdeskProperties/contractNumber instead

discount

Discount

Discount applied

edited (Deprecated)

[Boolean]

Returns true if the quotation has been edited
Example : true
Deprecated : Use notPublishable

endDate

[Date]

Period end date
Example : 2020-01-23T04:56:07.000+00:00

date-time

estimatedBillingDate

[Date]

Estimated date by which the quotation must be billed
Example : 2020-01-31T23:59:59Z

date-time

estimatedDeliveryDate

[Date]

The estimated date by which the quotation must be delivered
Example : 2020-01-31T23:59:59Z

date-time

forcedVat

[Boolean]

Forced VAT for the line
Example : true

generalAccount

[String]

General Account
Example : 411000

helpdeskProperties

HelpdeskProperties

Helpdesk properties

id

[String]

Id in database
Example : 5000123

isScheduled

[Boolean]

Set to “true” is automatically assigned if this line is already scheduled.
To update this field use the specific API Generate the quotation schedule.
Set as false by default.

Example : true

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

notificationComment

[String]

Comment of notification.
This field can only be updated if “notified” field in the quotation is on true.

Example : Lorem ipsum

notificationDate

[Date]

Date when the quotation has been notified.
This field can only be updated if “notified” field in the quotation is on true.

Example : 2020-01-31T23:59:59Z

date-time

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

percentDiscount (Deprecated)

[Double]

The discount percentage (when specified amountDiscount is not applicable)
Deprecated : Use discount/percentage instead

double

periodicity

Periodicity

Periodicity for recurring billing (0 = Unique(default); 1 = Annuelle; 2 = Semestrielle; 3 = Trimestrielle; 4 = Mensuelle)

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

productionBillingTargetDay

[Double]

Billing target day of the month for the production to be billed
Example : 5

double

productionEstimatedDuration

[Double]

The production estimated duration in minute
Example : 240

double

productionLinkedToAdvancePayments

[Boolean]

Returns 'true' if the quotation line concerns a production linked to advance payments.
Set as 'false' by default.
This field is always on 'false' if the billing mode is not production to be billed.

Example : true

productionTargetDay

[Double]

Production target day of the month for the production
Example : 22

double

productionTeam

ProductionTeamBase

Production team
Remark : In add APIs (mainly PUT requests) productionTeam model is not expected, use the productionTeamId field instead.

productionTeamId

[String]

Ident of the production team
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

projectedBillingDate

[Date]

The date by which the quotation must be billed
Example : 2020-01-31T23:59:59Z

date-time

quantity

[Double]

Quantity of the product
Example : 3

double

rankNumber

[Double]

Rank number of the line
Example : 2

double

recurringAmount

RecurringAmountsInfo

Detail about the recurring amounts of the quotation line

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

salesPerson

EmployeeBase

Sales person
Remark : In add APIs (mainly PUT requests) salesPerson model is not expected, use the salesPersonId field instead.

salesPersonId

[String]

Id of the sales person
Example : 5000123

scheduledInformation

ScheduleSummary

Schedule summary for the quotation line.

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.297. QuotationLineCriteria

Criteria used to get more details about quotation lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

notificationComment

ClauseString

notificationDate

ClauseDate

Notification date of the quotation line

phaseId

ClauseString

productionLinkedToAdvancePayments

ClauseString

productionTeamId

ClauseString

ID of the production team

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

salesPersonId

ClauseString

Sales person

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

3.298. QuotationLinePreFillParamHolder

Object containing a quotation line to pre-fill and the options needed.

Field Name Required Type Description Format

currencyCode

[String]

Code of the quotation currency
Example : GBP

customerId

[String]

The customer id of the quotation
Example : 500123

customerSiteId

[String]

The Id of the customer site.
This field is set with the delivery site ID of the customer, otherwise the billing site ID, or the order site ID.

Example : 500125

customerToBillId

[String]

Id of the customer to bill
Example : 500124

group

[Boolean]

Group quotation
Example : true

internal

[Boolean]

Internal quotation
Example : true

pricingMethodId

[String]

The pricing method id of the quotation
Example : 500122

quotationDate

[Date]

Date on the quotation
Example : 2020-01-23T04:56:07Z

date-time

quotationLine

X

QuotationLine

Details about the quotation line

reloadSoldProduct

[Boolean]

When the sold product attached to the quotation line is updated, this field indicates whether you want to reload the updated sold product information.
If you set 'true', then the information for the selected sold product will be reloaded.
Otherwise, the information for the sold product will be retained on the quotation line.
Set as 'true' by default.

Example : true

3.299. QuotationPreFillParamHolder

Object containing a quotation to pre-fill and the options needed

Field Name Required Type Description Format

preFillAction

PreFillAction

Defines the pre-filling action to perform.
Use CLONE to clone an existing quotation or FILL_FROM_SOURCE to pre-fill the quotation based on a source object.

Example : CLONE

quotation

Quotation

Details about the quotation used as the basis for pre-filling the new one.
Some fields in the new quotation may be intentionally left empty when cloned.

quotationCloningOptions

QuotationCloningOptions

Cloning options that apply when preFillAction is set to CLONE.
This field is ignored for other actions.

sourceObjectId

[String]

ID of the source object used to pre-fill the quotation.
This field is only used when preFillAction is INIT_FROM_SOURCE, in which case sourceObjectType must also be provided.

Example : 5000123

sourceObjectType

PrefillSourceObjectType

Type of the source object used to pre-fill the quotation.
This field is only considered when preFillAction is set to INIT_FROM_SOURCE.

Example : OPPORTUNITY

3.300. QuotationProbability

Probability of the quotation being accepted.

Type : enum (0, 1, 2, 3, 4, 9)

3.301. QuotationReadOption

The options you can use to get more information about the quotation.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the quotation

Enum: MANAGER, TECHNICAL_MANAGER, SALES_MANAGER, CHANGE_TRACKING, CURRENCY, PAYMENT, CONDITION_OF_PAYEMENT, CUSTOMER, CUSTOMER_TO_BILL, ACCOUNTING_JOURNAL, FISCAL_YEAR, ENTITY, PROJECT, PHASE, SUB_PHASE, CUSTOM_DATA, LINE_ADDITIONAL_FREE_FIELDS, LINE_PROJECT, LINE_PHASE, LINE_SUB_PHASE, LINE_PROJECT_TASK, LINE_ITEM, LINE_ITEM_CATEGORY, LINE_ITEM_SUBCATEGORY, LINE_RESOURCE, LINE_SALES_PERSON, LINE_PACK_ITEM, LINE_FORM_CONFIG, LINE_PRODUCTION_TEAM, LINE_HELPDESK, LINE_HELPDESK_CONTRACT, LINE_HELPDESK_CHECKBOOK, LINE_HELPDESK_TASK, OBJECT_HISTORY_LINKS, OPPORTUNITY, PRICING_METHOD, FORM_CONFIG, PIPE, ARCHIVE_REASON, SALES_ORDER_ADDRESS, DELIVERY_ADDRESS, BILLING_ADDRESS, EXPENSE_LINE_EMPLOYEE, EXPENSE_LINE_SUPPLIER, EXPENSE_LINE_CURRENCY, EXPENSE_LINE_TASK, EXPENSE_LINE_PROJECT, EXPENSE_LINE_PHASE, EXPENSE_LINE_SUBPHASE, EXPENSE_LINE_PRICING_METHOD, EXPENSE_LINE_PURCHASED_PRODUCT, EXPENSE_LINE_ACTION_CODE, E_SIGNATURE_TRANSACTIONS, LINE_SCHEDULED_INFORMATION, EXPENSE_LINE_SCHEDULED_INFORMATION

3.302. QuotationState

Quotation state

Type : enum (DRAFT, VALIDATED, ARCHIVED, ORDERED_UNSIGNED, SIGNED, CANCELED, REVISED)

3.303. 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.304. RecipientContactType

Type of recipient

Type : enum (IN_COPY, RECIPIENT)

3.305. 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.306. 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.307. RepeatingYear

Repeating Year

Type : enum (YES, NO)

3.308. 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.309. SalesBillingTable

Billing table

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

billingSite

CustomerSiteBase

All details about the customer site for the billing.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123

changeTracking

ChangeTracking

chorusProperties

ChorusProperties

Chorus properties

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)

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z

date-time

customerId

[String]

Id of the customer
Example : 5000123

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

description

[String]

Description
Example : Lorem ipsum

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

entityId

[String]

ID of the entity
Example : 5000123

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

lines

List of SalesBillingTableLine

List of the billing tables' lines with their details

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

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects

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

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

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

titleLines

List of LineTitle

List of the quotation's title lines

type

ManagementObjectType

Example : QUOTATION

3.310. SalesBillingTableCriteria

Search criteria for billing tables

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

billingSiteId

ClauseString

The id of the customer site for billing.

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerSiteId

ClauseString

Customer site

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

deliverySiteId

ClauseString

The id of the customer site for delivery.

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

lineCriteria

SalesBillingTableLineCriteria

Criteria on lines of the billing table

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

opportunityId

ClauseString

Id of the opportunity

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

readOption

SalesBillingTableReadOption

Options for retrieving extra information concerning the billing table

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.311. SalesBillingTableLine

Billing table 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

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

complementName

[String]

Description of the line
Example : Lorem ipsum

contractDate

[Date]

Date of contract
Example : 2020-01-23T04:56:07Z

date-time

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

helpdeskProperties

HelpdeskProperties

Helpdesk properties

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

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.312. SalesBillingTableLineCriteria

Criteria used to get more details about billing table lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

3.313. SalesBillingTableReadOption

The options you can use to get more information about the billing table.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the sales billing table

Enum: CHANGE_TRACKING, CUSTOMER, CUSTOMER_TO_BILL, ACCOUNTING_JOURNAL, FISCAL_YEAR, CURRENCY, MANAGER, ENTITY, PROJECT, PHASE, SUB_PHASE, PRICING_METHOD, CUSTOM_DATA, LINE_ADDITIONAL_FREE_FIELDS, LINE_PROJECT, LINE_PHASE, LINE_SUB_PHASE, LINE_PROJECT_TASK, LINE_ITEM, LINE_ITEM_CATEGORY, LINE_ITEM_SUBCATEGORY, LINE_RESOURCE, OBJECT_HISTORY_LINKS

3.314. SalesInvoiceOrigin

Code of the sales invoice's origin.

Type : enum (CO_CONTRACTING, SUB_CONTRACTING, TRAINING, GROUP_SUB_CONTRACTING_ASSEMBLED)

3.315. SalesManagementObject

Sales business document

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

billingSite

CustomerSiteBase

All details about the customer site for the billing.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123

changeTracking

ChangeTracking

chorusProperties

ChorusProperties

Chorus properties

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)

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z

date-time

customerId

[String]

Id of the customer
Example : 5000123

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

description

[String]

Description
Example : Lorem ipsum

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

entityId

[String]

ID of the entity
Example : 5000123

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

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects

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

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

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

titleLines

List of LineTitle

List of the quotation's title lines

type

ManagementObjectType

Example : QUOTATION

3.316. SalesManagementObjectCriteria

Criteria used to get more details about the sales business document.

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

billingSiteId

ClauseString

The id of the customer site for billing.

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

deliverySiteId

ClauseString

The id of the customer site for delivery.

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

opportunityId

ClauseString

Id of the opportunity

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validationDate

ClauseDate

Validation of the management object

3.317. SalesManagementObjectHierarchyElement

Lines hierarchy organization in a sales management object

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

elementType

SalesManagementObjectHierarchyElementType

Type of element to be hierarchized
Example : SALES_MANAGEMENT_OBJECT_LINE

id

[String]

ID in database
It's lineId if the elementType is SALES_MANAGEMENT_OBJECT
It's titleId if the elementType is TITLE
It's packId if the elementType is PACK

Example : 5009552

linesHierarchy

List of SalesManagementObjectHierarchyElement

Details about the lines hierarchy element in a management object

ranking

[Integer]

Location status ranking
Example : 7

int32

3.318. SalesManagementObjectHierarchyElementType

Type of element to be hierarchized

Type : enum (SALES_MANAGEMENT_OBJECT_LINE, TITLE, PACK)

3.319. SalesManagementObjectLineCriteria

Criteria used to get more details about the sales management object lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subPhaseId

ClauseString

3.320. SalesManagementObjectLineElement

Sales management object line element

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

elementType

SalesManagementObjectHierarchyElementType

Type of element to be hierarchized
Example : SALES_MANAGEMENT_OBJECT_LINE

id

[String]

ID in database
It's lineId if the elementType is SALES_MANAGEMENT_OBJECT
It's titleId if the elementType is TITLE
It's packId if the elementType is PACK

Example : 5009552

lineType

SalesManagementObjectLineType

Details about the type of line
Example : QUOTATION_LINE

linesHierarchy

List of SalesManagementObjectHierarchyElement

Details about the lines hierarchy element in a management object

name

[String]

Name of the line
Example : Helpdesk

ranking

[Integer]

Location status ranking
Example : 7

int32

3.321. SalesManagementObjectLineType

Type of sales management object line.

Type : enum (QUOTATION_LINE, SALES_ORDER_LINE, DELIVERY_LINE, SALES_INVOICE_LINE)

3.322. SalesManagementSite

Customer site address for sales management

Field Name Required Type Description Format

siteId

[String]

The id of the site.
Example : 5000123

siteType

SiteType

The site type to determine if the site concerns a delivery address or a sales order address or a billing address.
Example : DELIVERY_ADDRESS

3.323. SalesOrder

Sales order

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

billingSite

CustomerSiteBase

All details about the customer site for the billing.

billingSiteId

[String]

The id of the billing site for the billing.
Example : 5000123

billingTableId

[String]

Billing table id
Example : 5000123

changeTracking

ChangeTracking

chorusProperties

ChorusProperties

Chorus properties

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)

customer

CustomerBase

All the information needed about the customer
Remark : In add APIs (mainly PUT requests) customer model is not expected, use the customerId field instead.

customerDate

[Date]

Date of the customer reference
Example : 2020-01-31T23:59:59Z

date-time

customerId

[String]

Id of the customer
Example : 5000123

customerToBill

CustomerBase

All the information needed about the customer to bill
Remark : In add APIs (mainly PUT requests) customerToBill model is not expected, use the customerToBillId field instead.

customerToBillId

[String]

ID of the customer to bill.
The billed customer must be linked to the main customer.

Example : 5000123

date

[Date]

Date on the management object
Example : 2020-01-23T04:56:07.000+00:00

date-time

deliverySite

CustomerSiteBase

All details about the customer site for for delivery.

deliverySiteId

[String]

The id of the customer site for delivery.
Example : 5000123

description

[String]

Description
Example : Lorem ipsum

entity

EntityBase

Details about the entity
Remark : In add APIs (mainly PUT requests) entity model is not expected, use the entityId field instead.

entityCode (Deprecated)

[String]

The entity code
Example : Lyon
Deprecated : Use entityId instead

entityId

[String]

ID of the entity
Example : 5000123

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

lines

List of SalesOrderLine

List of the order's lines with their details

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

objectHistoryLinks

List of ObjectHistoryLink

List of the link between a quotation and other objects

origin

SalesOrderOrigin

Code of the order's origin.

Example : CO_CONTRACTING

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

quotationId

[String]

Signed quotation id
Example : 5000123

reference1

[String]

Customer reference 1
Example : CUSTOM_REF_1

reference2

[String]

Customer reference 2
Example : CUSTOM_REF_2

reference3

[String]

Customer reference 3
Example : CUSTOM_REF_3

salesOrderSite

CustomerSiteBase

All details about the customer site for the sales order.

salesOrderSiteId

[String]

The id of the customer site for the sales order.

This field is automatically set with the sales order site ID of the customer on the quotation.
To update this field, use the specific API: Associate or modify the customer site address in a quotation.

Example : 5000123

state

SalesOrderState

Details about the state of the order
Example : IN_PROGRESS

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

technicalManager

EmployeeBase

Technical manager
Remark : In add APIs (mainly PUT requests) technicalManager model is not expected, use the technicalManagerId field instead.

technicalManagerId

[String]

Id of the technical manager
Example : 5000123

thirdPartyId

[String]

The Id of the third-party
Example : CUSTOMER01

thirdPartyToBillId

[String]

The Id of the third-party to bill
Example : CUSTOMER02

titleLines

List of LineTitle

List of the quotation's title lines

type

ManagementObjectType

Example : QUOTATION

3.324. SalesOrderCriteria

Criteria used to get more details about the order.

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

billingSiteId

ClauseString

The id of the customer site for billing.

billingTableId

ClauseString

Billing table id

chorusCriteria

ChorusCriteria

Criteria used to filter on chorus' properties.

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)

customerCriteria

ManagementCustomerCriteria

Criteria on customer linked to the object

customerDate

ClauseDate

The customer reference date

customerId

ClauseString

Id of the customer

customerToBillId

ClauseString

Id of the customer to bill

date

ClauseDate

Date of the management object

delivered

[Boolean]

Return true if the order is delivered
Example : true

deliverySiteId

ClauseString

The id of the customer site for delivery.

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

lineCriteria

SalesOrderLineCriteria

Criteria on lines of the order

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

notification

ClauseBoolean

Criteria on notification of the order

opportunityId

ClauseString

Id of the opportunity

orderSiteId (Deprecated)

ClauseString

Order site
Deprecated : Use salesOrderSiteId

preTaxAmount

ClauseDouble

Pre tax amount of the management object

pricingMethodId

ClauseString

ID of the pricing method

quotationId

ClauseString

Signed quotation id

readOption

SalesOrderReadOption

Options for retrieving additional information about the order

reference1

ClauseString

Customer reference 1

reference2

ClauseString

Customer reference 2

reference3

ClauseString

Customer reference 3

salesJournalId

ClauseString

The code of the sales journal

salesOrderSiteId

ClauseString

The id of the customer site for the sales order.

state

ClauseString

State of the order

technicalManagerId

ClauseString

Technical manager

thirdPartyId

ClauseString

Id of the third party

thirdPartyToBillId

ClauseString

Id of the third party to bill

validated

[Boolean]

Return true if the order is validated
Example : true

validationDate

ClauseDate

Validation of the management object

3.325. SalesOrderDashboardCriteria

Criteria used on sales order dashboard when doing a sales order dashboard search.

Field Name Required Type Description Format

line

X

SalesOrderLineCriteria

Search criteria used on an order line

salesOrder

X

SalesOrderCriteria

Search criteria used on an order

3.326. SalesOrderDashboardResult

Result of the request /sales/orders/dashboard

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

line

SalesOrderLine

Details about order lines

salesOrder

SalesOrder

Details about orders

3.327. SalesOrderLine

Sales order 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

billingMode

BillingMode

Billing mode for the line
Example : TIME_BASED

complementName

[String]

Description of the line
Example : Lorem ipsum

contractDate

[Date]

Date of contract
Example : 2020-01-23T04:56:07Z

date-time

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

helpdeskProperties

HelpdeskProperties

Helpdesk properties

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

lineTitleRattachId

[String]

Id of the management object's first line
Example : 5000123

managementObjectId

[String]

Id of the management object
Example : 5000123

name

[String]

Name of the line
Example : Helpdesk

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

notificationComment

[String]

Comment of notification
Example : Lorem ipsum

notificationDate

[Date]

Date when the order has been notified
Example : 2020-01-31T23:59:59Z

date-time

packItem

Pack

Details about the pack item
Remark : In add APIs (mainly PUT requests) packItem model is not expected, use the packItemId field instead.

packItemId

[String]

Id of the pack item.
Example : 10727

path

List of [string]

List of the hierarchy from root
Example : ["Title 1","Subtitle 2","Pack 1"]
Remark : This property is read-only and provides current data without allowing modifications.

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

projectedBillingDate

[Date]

The date when the order must be billed
Example : 2020-01-31T23:59:59Z

date-time

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

salesPerson

EmployeeBase

Sales person
Remark : In add APIs (mainly PUT requests) salesPerson model is not expected, use the salesPersonId field instead.

salesPersonId

[String]

Id of sales person
Example : 5000123

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.328. SalesOrderLineCriteria

Criteria used to get more details about order lines.

Field Name Required Type Description Format

additionalFreeFieldCriteria

AdditionalFreeFieldsCriteria

billingMode

ClauseString

Billing mode

categoryId

ClauseString

Id of the category of the sold item

dutiableCriteria

DutiableCriteria

endDate

ClauseDate

End period clause

generalAccountNumber

ClauseString

grouping

ClauseString

Grouping of the item

helpdeskCriteria

HelpdeskCriteria

Criteria used to filter on helpdesk's properties.

id

ClauseString

itemId

ClauseString

Id of the sold item

notificationComment

ClauseString

Notification comment of order line

notificationDate

ClauseDate

Notification date of order line

phaseId

ClauseString

projectCriteria

ManagementProjectCriteria

Criteria on project linked to the line

projectId

ClauseString

projectTaskId

ClauseString

Id of the project task

reference

ClauseString

Reference of the item

resourceId

ClauseString

Resource allocated to complete the task

salesPersonId

ClauseString

Sales person

soldItemId

ClauseString

Id of the sold item

startDate

ClauseDate

Start period clause

subCategoryId

ClauseString

Id of the sub-category of the sold item

subCategoryItemType

ClauseString

Type of the sub-category of the sold item

subPhaseId

ClauseString

3.329. SalesOrderOrigin

Code of the sales order's origin.

Type : enum (CO_CONTRACTING, SUB_CONTRACTING)

3.330. SalesOrderReadOption

The options you can use to get more information about the order.

Field Name Required Type Description Format

options

List of [string]

List of options used to get more details about the sales order

Enum: MANAGER, TECHNICAL_MANAGER, CHANGE_TRACKING, CURRENCY, PAYMENT, CONDITION_OF_PAYEMENT, CUSTOMER, CUSTOMER_TO_BILL, ACCOUNTING_JOURNAL, FISCAL_YEAR, ENTITY, PROJECT, PHASE, SUB_PHASE, CUSTOM_DATA, LINE_ADDITIONAL_FREE_FIELDS, LINE_PROJECT, LINE_PHASE, LINE_SUB_PHASE, LINE_PROJECT_TASK, LINE_ITEM, LINE_ITEM_CATEGORY, LINE_ITEM_SUBCATEGORY, LINE_RESOURCE, LINE_SALES_PERSON, LINE_FORM_CONFIG, PRICING_METHOD, FORM_CONFIG, OBJECT_HISTORY_LINKS

3.331. SalesOrderState

Sales order state

Type : enum (IN_PROGRESS, VALIDATED, NOT_VALIDATED, CANCELED, REVISED, DELIVERED)

3.332. SalesPricingContext

Object containing elements needed to get the unit price of a sold item

Field Name Required Type Description Format

currencyCode

[String]

Code of the management object currency
Example : GBP

customerId

[String]

ID of the customer
Example : 5000123

pricingMethodId

[String]

ID of the pricing method
Example : 5000123

quantity

[Double]

The quantity of sold item
Example : 4

double

referentialDate

[Date]

Referential date
Example : 2020-01-23T04:56:07Z

date-time

referentialPricingDate

[Date]

The referential date when the pricing method is applied.
Example : 2020-01-23T04:56:07Z

date-time

3.333. 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.334. ScheduleSummary

Summary of schedule details generated

Field Name Required Type Description Format

totalDuration

[Double]

This field is automatically filled with the total duration of all generated schedules for this line.
Example : 10.5
Remark : This property is read-only and provides current data without allowing modifications.

double

3.335. 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.336. 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.337. SearchFieldType

Type of search field

Type : enum (DROPDOWN_LIST, DATE, TEXT, BOOLEAN, NUMBER)

3.338. 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.339. 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.340. 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.341. 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.342. ShiftPeriod

Time unit for shifting the period.

Type : enum (YEAR, HALF_YEAR, QUARTER, MONTH, WEEK, DAY)

3.343. SiteType

The list of the site type.
This type determines if the address of customer's site concerns a delivery address or a sales order address or a billing address.

Type : enum (DELIVERY_ADDRESS, SALES_ORDER_ADDRESS, BILLING_ADDRESS)

3.344. 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.345. 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.346. 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.347. 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.348. 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.349. SortType

Sort type for search

Type : enum (ASC, DESC)

3.350. 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.351. StandardAction

Standard action for an event

Type : enum (INSERT, UPDATE, DELETE)

3.352. 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.353. 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.354. 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.355. 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.356. 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.357. 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.358. 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.359. SubCategoryItemClassification

Purchased item sub-category classification

Type : enum (EXTERNAL, INTERNAL, NOT_SPECIFIED, OTHERS, PRICE_REVIEW)

3.360. 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.361. 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.362. 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.363. 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.364. 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.365. 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.366. 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.367. 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.368. 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.369. 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.370. 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.371. 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.372. SupplierType

Supplier type

Type : enum (INTERNAL, EXTERNAL, VIRTUAL)

3.373. 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.374. 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.375. 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.376. 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.377. TagType

Type of tag

Type : enum (ISSUE, SCHEDULE, OPPORTUNITY)

3.378. TaskBase

Task base

Field Name Required Type Description Format

id

[String]

Id in database
Example : 5000123

3.379. TaskBillingType

The list of value of billing type of the type of project task.

Type : enum (TIME_BASED, TIME_BASED_FIXED_PRICE_MONTHLY)

3.380. 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.381. 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.382. 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.383. 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.384. 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.385. ThirdPartyTypeEnum

A type of the third party with people links

Type : enum (PROSPECT, CUSTOMER, SUPPLIER, OTHER_THIRD_PARTY)

3.386. 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.387. 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.388. 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.389. 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.390. TitleLineElement

Title line element

Field Name Required Type Description Format

action

Action

The action verb (ADD / UPDATE / REMOVE)
Example : ADD

elementType

SalesManagementObjectHierarchyElementType

Type of element to be hierarchized
Example : SALES_MANAGEMENT_OBJECT_LINE

id

[String]

ID in database
It's lineId if the elementType is SALES_MANAGEMENT_OBJECT
It's titleId if the elementType is TITLE
It's packId if the elementType is PACK

Example : 5009552

linesHierarchy

List of SalesManagementObjectHierarchyElement

Details about the lines hierarchy element in a management object

name

[String]

Name of the title
Example : Helpdesk

ranking

[Integer]

Location status ranking
Example : 7

int32

3.391. TitleType

Type of title

Type : enum (UNKNOWN, NEUTRAL, MALE, FEMALE)

3.392. 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.393. TransactionStatus

Transaction status for electronic signatures

Type : enum (IN_PROGRESS, CANCELED, EXPIRED, COMPLETED)

3.394. UnitDuration

Unit of duration

Type : enum (MINUTE, HOUR_MINUTE, HOUR_DECIMAL, DAY, UNIT_OF_EMPLOYEE, UNIT_OF_COMPANY)

3.395. UnitPrice

Unit price of an item

Field Name Required Type Description Format

value

[Double]

Unit price of an item
Example : 4

double

3.396. 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.397. 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.398. 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.399. 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.400. 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.401. 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.402. 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.403. 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.404. ValidityType

Type of validity

Type : enum (VALID, INVALID)

3.405. WeightingCoefficient

Details about weighting coefficients

Field Name Required Type Description Format

notModifiableCoefficients

[Boolean]

Set as true by default.
Example : true

quotationCoefficient0

[Double]

Level 0 quotation coefficient.
Example : 1

double

quotationCoefficient1

[Double]

Level 1 quotation coefficient.
Example : 2

double

quotationCoefficient2

[Double]

Level 2 quotation coefficient.
Example : 3

double

quotationCoefficient3

[Double]

Level 3 quotation coefficient.
Example : 4

double

quotationCoefficient4

[Double]

Level 4 quotation coefficient.
Example : 5

double

quotationCoefficient9

[Double]

Level 9 quotation coefficient.
Example : 6

double

3.406. 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.407. 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:49:26
Copyright : Akuiteo © 2025