Create a journal entry

Creates a journal entry with balanced debit and credit lines. QuickBooks Desktop requires total debits to equal total credits, and any line that posts to Accounts Receivable or Accounts Payable must include the related customer or vendor reference.

post/quickbooks-desktop/journal-entries

Headers

Conductor-End-User-Idstring required

The ID of the End-User to receive this request.

Example:end_usr_1234567abcdefg

The ID of the End-User to receive this request.

Request body

transactionDatestring date required

The date of this journal entry, in ISO 8601 format (YYYY-MM-DD).

refNumberstring

The case-sensitive user-defined reference number for this journal entry, which can be used to identify the transaction in QuickBooks. This value is not required to be unique and can be arbitrarily changed by the QuickBooks user. When left blank in this create request, this field will be left blank in QuickBooks (i.e., it does not auto-increment).

Maximum length: 11 characters.

isAdjustmentboolean

Indicates whether this journal entry is an adjustment entry. When true, QuickBooks retains the original entry information to maintain an audit trail of the adjustments.

isHomeCurrencyAdjustmentboolean

Indicates whether this journal entry is an adjustment made in the company's home currency for a transaction that was originally recorded in a foreign currency.

areAmountsEnteredInHomeCurrencyboolean

Indicates whether the amounts in this journal entry were entered in the company's home currency rather than a foreign currency. When true, amounts are in the home currency regardless of the currency field.

currencyIdstring

The journal entry's currency. For built-in currencies, the name and code are standard ISO 4217 international values. For user-defined currencies, all values are editable.

exchangeRatenumber

The market exchange rate between this journal entry's currency and the home currency in QuickBooks at the time of this transaction. Represented as a decimal value (e.g., 1.2345 for 1 EUR = 1.2345 USD if USD is the home currency).

externalIdstring uuid

A globally unique identifier (GUID) you, the developer, can provide for tracking this object in your external system. This field is immutable and can only be set during object creation.

IMPORTANT: This field must be formatted as a valid GUID; otherwise, QuickBooks will return an error.

Example request

{
  "transactionDate": "2024-10-01",
  "refNumber": "JE-1234",
  "currencyId": "80000001-1234567890",
  "exchangeRate": 1.2345,
  "externalId": "12345678-abcd-1234-abcd-1234567890ab",
  "debitLines": [
    {
      "accountId": "80000001-1234567890",
      "amount": "1000.00",
      "memo": "Monthly utility bill settlement",
      "entityId": "80000001-1234567890",
      "classId": "80000001-1234567890",
      "salesTaxItemId": "80000001-1234567890",
      "billingStatus": "billable"
    }
  ],
  "creditLines": [
    {
      "accountId": "80000001-1234567890",
      "amount": "1000.00",
      "memo": "Allocated funds for office lease payment",
      "entityId": "80000001-1234567890",
      "classId": "80000001-1234567890",
      "salesTaxItemId": "80000001-1234567890",
      "billingStatus": "billable"
    }
  ]
}

Response

Returns the newly created journal entry.

idstring required

The unique identifier assigned by QuickBooks to this journal entry. This ID is unique across all transaction types.

objectType'qbd_journal_entry' required

The type of object. This value is always "qbd_journal_entry".

createdAtstring required

The date and time when this journal entry was created, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.

updatedAtstring required

The date and time when this journal entry was last updated, in ISO 8601 format (YYYY-MM-DDThh:mm:ss±hh:mm), which QuickBooks Desktop interprets in the local timezone of the end-user's computer.

revisionNumberstring required

The current QuickBooks-assigned revision number of this journal entry object, which changes each time the object is modified. When updating this object, you must provide the most recent revisionNumber to ensure you're working with the latest data; otherwise, the update will return an error.

transactionDatestring date required

The date of this journal entry, in ISO 8601 format (YYYY-MM-DD).

refNumberstring nullable required

The case-sensitive user-defined reference number for this journal entry, which can be used to identify the transaction in QuickBooks. This value is not required to be unique and can be arbitrarily changed by the QuickBooks user.

isAdjustmentboolean nullable required

Indicates whether this journal entry is an adjustment entry. When true, QuickBooks retains the original entry information to maintain an audit trail of the adjustments.

isHomeCurrencyAdjustmentboolean nullable required

Indicates whether this journal entry is an adjustment made in the company's home currency for a transaction that was originally recorded in a foreign currency.

areAmountsEnteredInHomeCurrencyboolean nullable required

Indicates whether the amounts in this journal entry were entered in the company's home currency rather than a foreign currency. When true, amounts are in the home currency regardless of the currency field.

exchangeRatenumber nullable required

The market exchange rate between this journal entry's currency and the home currency in QuickBooks at the time of this transaction. Represented as a decimal value (e.g., 1.2345 for 1 EUR = 1.2345 USD if USD is the home currency).

externalIdstring nullable required

A globally unique identifier (GUID) you, the developer, can provide for tracking this object in your external system. This field is immutable and can only be set during object creation.

Example response

{
  "id": "123ABC-1234567890",
  "objectType": "qbd_journal_entry",
  "createdAt": "2025-01-01T12:34:56+00:00",
  "updatedAt": "2025-02-01T12:34:56+00:00",
  "revisionNumber": "1721172183",
  "transactionDate": "2024-10-01",
  "refNumber": "JE-1234",
  "currency": {
    "id": "80000001-1234567890",
    "fullName": "USD"
  },
  "exchangeRate": 1.2345,
  "externalId": "12345678-abcd-1234-abcd-1234567890ab",
  "debitLines": [
    {
      "id": "456DEF-1234567890",
      "objectType": "qbd_journal_debit_line",
      "account": {
        "id": "80000001-1234567890",
        "fullName": "Checking"
      },
      "amount": "1000.00",
      "memo": "Monthly utility bill settlement",
      "entity": {
        "id": "80000001-1234567890",
        "fullName": "Acme Corporation"
      },
      "class": {
        "id": "80000001-1234567890",
        "fullName": "Facilities & Utilities"
      },
      "salesTaxItem": {
        "id": "80000001-1234567890",
        "fullName": "State Sales Tax"
      },
      "billingStatus": "billable"
    }
  ],
  "creditLines": [
    {
      "id": "456DEF-1234567890",
      "objectType": "qbd_journal_credit_line",
      "account": {
        "id": "80000001-1234567890",
        "fullName": "Accounts-Payable"
      },
      "amount": "1000.00",
      "memo": "Allocated funds for office lease payment",
      "entity": {
        "id": "80000001-1234567890",
        "fullName": "Acme Corporation"
      },
      "class": {
        "id": "80000001-1234567890",
        "fullName": "Administrative"
      },
      "salesTaxItem": {
        "id": "80000001-1234567890",
        "fullName": "State Sales Tax"
      },
      "billingStatus": "billable"
    }
  ],
  "customFields": [
    {
      "ownerId": "0",
      "name": "Customer Rating",
      "type": "string_1024_type",
      "value": "Premium"
    }
  ]
}

Changes

Changed in 6 of the 46 revisions of this API.1111875

  • 3a1369d8e2dd31See the full diff
    • the creditLines/items/account response's property type/format changed from object/ to / for status 200

      response-property-type-changed

    • removed the required property creditLines/items/account/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/account/id from the response with the 200 status

      response-required-property-removed

    • added subschema #1 subschema #2 to the creditLines/items/account response property anyOf list for the response status 200

      response-property-any-of-added

    • the creditLines/items/accountId request property's maxLength was set to 36

      request-property-max-length-set

    • the creditLines/items/classId request property's maxLength was set to 36

      request-property-max-length-set

    • the creditLines/items/entityId request property's maxLength was set to 36

      request-property-max-length-set

    • the creditLines/items/salesTaxItemId request property's maxLength was set to 36

      request-property-max-length-set

    • the currencyId request property's maxLength was set to 36

      request-property-max-length-set

    • the debitLines/items/accountId request property's maxLength was set to 36

      request-property-max-length-set

    • the debitLines/items/classId request property's maxLength was set to 36

      request-property-max-length-set

    • the debitLines/items/entityId request property's maxLength was set to 36

      request-property-max-length-set

    • the debitLines/items/salesTaxItemId request property's maxLength was set to 36

      request-property-max-length-set

    • the refNumber request property's maxLength was set to 11

      request-property-max-length-set

  • 10d4e9ebd1df3816See the full diff
    • response property areAmountsEnteredInHomeCurrency list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/account/fullName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/account/id list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/amount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/billingStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/memo list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/amount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/billingStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/memo list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property exchangeRate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property externalId list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isAdjustment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isHomeCurrencyAdjustment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property refNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the creditLines/items/class response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the creditLines/items/entity response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the creditLines/items/salesTaxItem response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the currency response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/account response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/class response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/entity response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/salesTaxItem response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property creditLines/items/class/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/class/id from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/entity/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/entity/id from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/salesTaxItem/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/salesTaxItem/id from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/account/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/account/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/class/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/class/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/entity/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/entity/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/salesTaxItem/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/salesTaxItem/id from the response with the 200 status

      response-required-property-removed

    • added subschema #1 subschema #2 to the creditLines/items/class response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the creditLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the creditLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the currency response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/account response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/class response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the billable enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the billable enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the has_been_billed enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the has_been_billed enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_billable enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_billable enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

  • 8e0b7df2044d30841See the full diff
    • the response property areAmountsEnteredInHomeCurrency became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/account/fullName became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/account/id became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/amount became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/billingStatus became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/class became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/entity became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/memo became nullable for the status 200

      response-property-became-nullable

    • the response property creditLines/items/salesTaxItem became nullable for the status 200

      response-property-became-nullable

    • the response property currency became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/account became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/amount became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/billingStatus became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/class became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/entity became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/memo became nullable for the status 200

      response-property-became-nullable

    • the response property debitLines/items/salesTaxItem became nullable for the status 200

      response-property-became-nullable

    • the response property exchangeRate became nullable for the status 200

      response-property-became-nullable

    • the response property externalId became nullable for the status 200

      response-property-became-nullable

    • the response property isAdjustment became nullable for the status 200

      response-property-became-nullable

    • the response property isHomeCurrencyAdjustment became nullable for the status 200

      response-property-became-nullable

    • the response property refNumber became nullable for the status 200

      response-property-became-nullable

    • the creditLines/items/class response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the creditLines/items/entity response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the creditLines/items/salesTaxItem response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the currency response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the debitLines/items/account response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the debitLines/items/class response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the debitLines/items/entity response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • the debitLines/items/salesTaxItem response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

    • added the new billable enum value to the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new billable enum value to the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new has_been_billed enum value to the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new has_been_billed enum value to the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new not_billable enum value to the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new not_billable enum value to the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-added

    • removed the pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ from the request property transactionDate

      request-property-pattern-removed

    • removed the pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ from the request property externalId

      request-property-pattern-removed

    • removed subschema #1 subschema #2 from the creditLines/items/class response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the creditLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the creditLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the currency response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the debitLines/items/account response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the debitLines/items/class response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the debitLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the debitLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-removed

    • response property areAmountsEnteredInHomeCurrency list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property creditLines/items/account/fullName list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property creditLines/items/account/id list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property creditLines/items/amount list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property creditLines/items/billingStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property creditLines/items/memo list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property debitLines/items/amount list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property debitLines/items/billingStatus list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property debitLines/items/memo list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property exchangeRate list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property externalId list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property isAdjustment list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property isHomeCurrencyAdjustment list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • response property refNumber list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • the transactionDate response's property pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ was removed for the status 200

      response-property-pattern-removed

    • added the required property creditLines/items/class/fullName to the response with the 200 status

      response-required-property-added

    • added the required property creditLines/items/class/id to the response with the 200 status

      response-required-property-added

    • added the required property creditLines/items/entity/fullName to the response with the 200 status

      response-required-property-added

    • added the required property creditLines/items/entity/id to the response with the 200 status

      response-required-property-added

    • added the required property creditLines/items/salesTaxItem/fullName to the response with the 200 status

      response-required-property-added

    • added the required property creditLines/items/salesTaxItem/id to the response with the 200 status

      response-required-property-added

    • added the required property currency/fullName to the response with the 200 status

      response-required-property-added

    • added the required property currency/id to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/account/fullName to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/account/id to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/class/fullName to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/class/id to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/entity/fullName to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/entity/id to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/salesTaxItem/fullName to the response with the 200 status

      response-required-property-added

    • added the required property debitLines/items/salesTaxItem/id to the response with the 200 status

      response-required-property-added

  • 5f832f6956754017See the full diff
    • added the pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ to the request property transactionDate

      request-property-pattern-added

    • added the pattern ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$ to the request property externalId

      request-property-pattern-added

    • response property areAmountsEnteredInHomeCurrency list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/account/fullName list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/account/id list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/amount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/billingStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property creditLines/items/memo list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/amount list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/billingStatus list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property debitLines/items/memo list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property exchangeRate list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property externalId list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isAdjustment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property isHomeCurrencyAdjustment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • response property refNumber list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

    • the creditLines/items/class response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the creditLines/items/entity response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the creditLines/items/salesTaxItem response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the currency response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/account response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/class response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/entity response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • the debitLines/items/salesTaxItem response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

    • removed the required property creditLines/items/class/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/class/id from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/entity/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/entity/id from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/salesTaxItem/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property creditLines/items/salesTaxItem/id from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property currency/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/account/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/account/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/class/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/class/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/entity/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/entity/id from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/salesTaxItem/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property debitLines/items/salesTaxItem/id from the response with the 200 status

      response-required-property-removed

    • added subschema #1 subschema #2 to the creditLines/items/class response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the creditLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the creditLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the currency response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/account response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/class response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/entity response property anyOf list for the response status 200

      response-property-any-of-added

    • added subschema #1 subschema #2 to the debitLines/items/salesTaxItem response property anyOf list for the response status 200

      response-property-any-of-added

    • removed the billable enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the billable enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the has_been_billed enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the has_been_billed enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_billable enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the not_billable enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the creditLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the debitLines/items/billingStatus response property for the response status 200

      response-property-enum-value-removed

    • the transactionDate response's property pattern ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))$ was added for the status 200

      response-property-pattern-added