Update a receive-payment

Updates a received payment. When you resubmit applications to invoices, keep them on the same accounts receivable account and include the payment amount, discount, or credit on every allocation you send.

post/quickbooks-desktop/receive-payments/{id}

Path parameters

idstring required

The QuickBooks-assigned unique identifier of the receive-payment to update.

Example:123ABC-1234567890

The QuickBooks-assigned unique identifier of the receive-payment to update.

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

revisionNumberstring required

The current QuickBooks-assigned revision number of the receive-payment object you are updating, which you can get by fetching the object first. Provide the most recent revisionNumber to ensure you're working with the latest data; otherwise, the update will return an error.

customerIdstring

The customer or customer-job to which the payment for this receive-payment is credited.

receivablesAccountIdstring

The Accounts-Receivable (A/R) account to which this receive-payment is assigned, used to track the amount owed. If omitted, QuickBooks Desktop uses the default A/R account configured in the company file.

IMPORTANT: If this receive-payment is linked to other transactions, this A/R account must match the receivablesAccount used in all linked transactions.

transactionDatestring date

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

refNumberstring

The case-sensitive user-defined reference number for this receive-payment, 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.

Maximum length: 20 characters.

totalAmountstring

The total monetary amount of this receive-payment, represented as a decimal string.

NOTE: The sum of the paymentAmount amounts in the applyToTransactions array cannot exceed the totalAmount, or you will receive an error.

Decimal string format: exactly 2 decimal places when cents are included and up to 13 digits before the decimal point (for example, "123.45").

exchangeRatenumber

The market exchange rate between this receive-payment'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).

paymentMethodIdstring

The receive-payment's payment method (e.g., cash, check, credit card).

memostring

A memo or note for this receive-payment that will be displayed at the beginning of reports containing details about this receive-payment.

depositToAccountIdstring

The account where the funds for this receive-payment will be or have been deposited.

Example request

{
  "revisionNumber": "1721172183",
  "customerId": "80000001-1234567890",
  "receivablesAccountId": "80000001-1234567890",
  "transactionDate": "2024-10-01",
  "refNumber": "PAYMENT-1234",
  "totalAmount": "1000.00",
  "exchangeRate": 1.2345,
  "paymentMethodId": "80000001-1234567890",
  "memo": "Payment received at store location - cash",
  "depositToAccountId": "80000001-1234567890",
  "creditCardTransaction": {
    "request": {
      "number": "xxxxxxxxxxxx1234",
      "expirationMonth": 12,
      "expirationYear": 2024,
      "name": "John Doe",
      "address": "1234 Main St, Anytown, USA, 12345",
      "postalCode": "12345",
      "commercialCardCode": "corporate",
      "transactionMode": "card_not_present",
      "transactionType": "charge"
    },
    "response": {
      "statusMessage": "Success",
      "creditCardTransactionId": "1234567890",
      "merchantAccountNumber": "1234567890",
      "authorizationCode": "1234567890",
      "avsStreetStatus": "pass",
      "avsZipStatus": "pass",
      "cardSecurityCodeMatch": "pass",
      "reconBatchId": "1234567890",
      "paymentGroupingCode": 2,
      "paymentStatus": "completed",
      "transactionAuthorizedAt": "2024-01-01T12:34:56Z",
      "transactionAuthorizationStamp": 2,
      "clientTransactionId": "1234567890"
    }
  },
  "applyToTransactions": [
    {
      "transactionId": "123ABC-1234567890",
      "paymentAmount": "25.00",
      "applyCredits": [
        {
          "creditTransactionId": "ABCDEF-1234567890",
          "appliedAmount": "100.00"
        }
      ],
      "discountAmount": "50.00",
      "discountAccountId": "80000001-1234567890",
      "discountClassId": "80000001-1234567890"
    }
  ]
}

Response

Returns the updated receive-payment.

idstring required

The unique identifier assigned by QuickBooks to this receive-payment. This ID is unique across all transaction types.

objectType'qbd_receive_payment' required

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

createdAtstring required

The date and time when this receive-payment 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 receive-payment 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 receive-payment 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 receive-payment, in ISO 8601 format (YYYY-MM-DD).

refNumberstring nullable required

The case-sensitive user-defined reference number for this receive-payment, 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.

totalAmountstring required

The total monetary amount of this receive-payment, represented as a decimal string.

exchangeRatenumber nullable required

The market exchange rate between this receive-payment'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).

totalAmountInHomeCurrencystring nullable required

The total monetary amount of this receive-payment converted to the home currency of the QuickBooks company file. Represented as a decimal string.

memostring nullable required

A memo or note for this receive-payment that will be displayed at the beginning of reports containing details about this receive-payment.

unusedPaymentstring nullable required

The amount of this receive-payment that remains unapplied to any transactions. This occurs in two cases: (1) When the sum of paymentAmount amounts in applyToTransactions is less than totalAmount, leaving a portion of the payment unused, or (2) When a payment is received that equals the exact amount of an invoice, but credits or discounts are also applied, resulting in excess payment.

unusedCreditsstring nullable required

The amount of credit that remains unused after applying credits to this receive-payment. This occurs when the applyCredit.appliedAmount specified for a credit memo (applyCredit.creditMemoId) in the applyToTransactions array is less than the total available credit amount for that credit memo.

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_receive_payment",
  "createdAt": "2025-01-01T12:34:56+00:00",
  "updatedAt": "2025-02-01T12:34:56+00:00",
  "revisionNumber": "1721172183",
  "customer": {
    "id": "80000001-1234567890",
    "fullName": "Acme Corporation"
  },
  "receivablesAccount": {
    "id": "80000001-1234567890",
    "fullName": "Accounts-Receivable"
  },
  "transactionDate": "2024-10-01",
  "refNumber": "PAYMENT-1234",
  "totalAmount": "1000.00",
  "currency": {
    "id": "80000001-1234567890",
    "fullName": "USD"
  },
  "exchangeRate": 1.2345,
  "totalAmountInHomeCurrency": "1234.56",
  "paymentMethod": {
    "id": "80000001-1234567890",
    "fullName": "Credit Card"
  },
  "memo": "Payment received at store location - cash",
  "depositToAccount": {
    "id": "80000001-1234567890",
    "fullName": "Undeposited Funds"
  },
  "creditCardTransaction": {
    "request": {
      "number": "xxxxxxxxxxxx1234",
      "expirationMonth": 12,
      "expirationYear": 2024,
      "name": "John Doe",
      "address": "1234 Main St, Anytown, USA, 12345",
      "postalCode": "12345",
      "commercialCardCode": "corporate",
      "transactionMode": "card_not_present",
      "transactionType": "charge"
    },
    "response": {
      "statusMessage": "Success",
      "creditCardTransactionId": "1234567890",
      "merchantAccountNumber": "1234567890",
      "authorizationCode": "1234567890",
      "avsStreetStatus": "pass",
      "avsZipStatus": "pass",
      "cardSecurityCodeMatch": "pass",
      "reconBatchId": "1234567890",
      "paymentGroupingCode": 2,
      "paymentStatus": "completed",
      "transactionAuthorizedAt": "2024-01-01T12:34:56Z",
      "transactionAuthorizationStamp": 2,
      "clientTransactionId": "1234567890"
    }
  },
  "unusedPayment": "100.00",
  "unusedCredits": "100.00",
  "externalId": "12345678-abcd-1234-abcd-1234567890ab",
  "appliedToTransactions": [
    {
      "transactionId": "123ABC-1234567890",
      "transactionType": "invoice",
      "transactionDate": "2024-10-01",
      "refNumber": "TXN-1234",
      "balanceRemaining": "100.00",
      "amount": "1000.00",
      "discountAmount": "50.00",
      "discountAccount": {
        "id": "80000001-1234567890",
        "fullName": "Discount Account"
      },
      "discountClass": {
        "id": "80000001-1234567890",
        "fullName": "Discounts"
      },
      "linkedTransactions": [
        {
          "id": "123ABC-1234567890",
          "objectType": "qbd_linked_transaction",
          "transactionType": "invoice",
          "transactionDate": "2024-10-01",
          "refNumber": "LINK-1234",
          "linkType": "amount",
          "amount": "1000.00"
        }
      ]
    }
  ],
  "customFields": [
    {
      "ownerId": "0",
      "name": "Customer Rating",
      "type": "string_1024_type",
      "value": "Premium"
    }
  ]
}

Changes

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

    • added the new unknown enum value to the appliedToTransactions/items/transactionType response property for the response status 200

      response-property-enum-value-added

    • for the path request parameter id, the maxLength was set to 36

      request-parameter-max-length-set

    • the applyToTransactions/items/applyCredits/items/creditTransactionId request property's maxLength was set to 36

      request-property-max-length-set

    • the applyToTransactions/items/discountAccountId request property's maxLength was set to 36

      request-property-max-length-set

    • the applyToTransactions/items/discountClassId request property's maxLength was set to 36

      request-property-max-length-set

    • the applyToTransactions/items/transactionId request property's maxLength was set to 36

      request-property-max-length-set

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

      request-property-max-length-set

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

      request-property-max-length-set

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

      request-property-max-length-set

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

      request-property-max-length-set

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

      request-property-max-length-set

  • 10d4e9ebd1df3612See the full diff
    • response property appliedToTransactions/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 appliedToTransactions/items/balanceRemaining 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 appliedToTransactions/items/discountAmount 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 appliedToTransactions/items/linkedTransactions/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 appliedToTransactions/items/linkedTransactions/items/linkType 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 appliedToTransactions/items/linkedTransactions/items/refNumber 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 appliedToTransactions/items/refNumber 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 appliedToTransactions/items/transactionDate 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 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 refNumber 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 totalAmountInHomeCurrency 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 unusedCredits 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 unusedPayment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

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

      response-property-type-changed

    • the appliedToTransactions/items/discountClass 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 customer response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

    • removed the required property appliedToTransactions/items/discountAccount/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountAccount/id from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountClass/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountClass/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 customer/fullName from the response with the 200 status

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

    • added qbd_credit_card_transaction subschema #2 to the creditCardTransaction response property anyOf list for the response status 200

      response-property-any-of-added

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

      response-property-any-of-added

    • added subschema #1 subschema #2 to the appliedToTransactions/items/discountClass 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 customer response property anyOf list for the response status 200

      response-property-any-of-added

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

      response-property-any-of-added

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

      response-property-any-of-added

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

      response-property-any-of-added

    • removed the amount enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed the quantity enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_credit_card_transaction subschema #2 from the creditCardTransaction response property oneOf list for the response status 200

      response-property-one-of-removed

  • 8e0b7df2044d30340See the full diff
    • the response property appliedToTransactions/items/amount became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/balanceRemaining became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/discountAccount became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/discountAmount became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/discountClass became nullable for the status 200

      response-property-became-nullable

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

      response-property-became-nullable

    • the response property appliedToTransactions/items/linkedTransactions/items/linkType became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/linkedTransactions/items/refNumber became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/refNumber became nullable for the status 200

      response-property-became-nullable

    • the response property appliedToTransactions/items/transactionDate 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 customer became nullable for the status 200

      response-property-became-nullable

    • the response property depositToAccount 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 memo became nullable for the status 200

      response-property-became-nullable

    • the response property paymentMethod became nullable for the status 200

      response-property-became-nullable

    • the response property receivablesAccount 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 response property totalAmountInHomeCurrency became nullable for the status 200

      response-property-became-nullable

    • the response property unusedCredits became nullable for the status 200

      response-property-became-nullable

    • the response property unusedPayment became nullable for the status 200

      response-property-became-nullable

    • added qbd_credit_card_transaction subschema #2 to the creditCardTransaction response property oneOf list for the response status 200

      response-property-one-of-added

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

      response-property-type-changed

    • the appliedToTransactions/items/discountClass 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 customer response's property type/format changed from / to object null/ for status 200

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

    • added the new amount enum value to the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-added

    • added the new quantity enum value to the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-added

    • added the new undefined enum value to the appliedToTransactions/items/linkedTransactions/items/linkType 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 qbd_credit_card_transaction subschema #2 from the creditCardTransaction response property anyOf list for the response status 200

      response-property-any-of-removed

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

      response-property-any-of-removed

    • removed subschema #1 subschema #2 from the appliedToTransactions/items/discountClass 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 customer response property anyOf list for the response status 200

      response-property-any-of-removed

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

      response-property-any-of-removed

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

      response-property-any-of-removed

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

      response-property-any-of-removed

    • response property appliedToTransactions/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 appliedToTransactions/items/balanceRemaining 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 appliedToTransactions/items/discountAmount 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 appliedToTransactions/items/linkedTransactions/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 appliedToTransactions/items/linkedTransactions/items/linkType 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 appliedToTransactions/items/linkedTransactions/items/refNumber 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 appliedToTransactions/items/refNumber 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 appliedToTransactions/items/transactionDate 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 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 refNumber 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 totalAmountInHomeCurrency 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 unusedCredits 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 unusedPayment list-of-types was narrowed by removing types null from media type application/json of response 200

      response-property-list-of-types-narrowed

    • the appliedToTransactions/items/linkedTransactions/items/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

    • 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 appliedToTransactions/items/discountAccount/fullName to the response with the 200 status

      response-required-property-added

    • added the required property appliedToTransactions/items/discountAccount/id to the response with the 200 status

      response-required-property-added

    • added the required property appliedToTransactions/items/discountClass/fullName to the response with the 200 status

      response-required-property-added

    • added the required property appliedToTransactions/items/discountClass/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 customer/fullName to the response with the 200 status

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

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

      response-required-property-added

  • 5f832f6956753714See 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

    • response property appliedToTransactions/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 appliedToTransactions/items/balanceRemaining 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 appliedToTransactions/items/discountAmount 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 appliedToTransactions/items/linkedTransactions/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 appliedToTransactions/items/linkedTransactions/items/linkType 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 appliedToTransactions/items/linkedTransactions/items/refNumber 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 appliedToTransactions/items/refNumber 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 appliedToTransactions/items/transactionDate 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 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 refNumber 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 totalAmountInHomeCurrency 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 unusedCredits 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 unusedPayment list-of-types was widened by adding types null to media type application/json of response 200

      response-property-list-of-types-widened

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

      response-property-type-changed

    • the appliedToTransactions/items/discountClass 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 customer response's property type/format changed from object null/ to / for status 200

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

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

      response-property-type-changed

    • removed the required property appliedToTransactions/items/discountAccount/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountAccount/id from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountClass/fullName from the response with the 200 status

      response-required-property-removed

    • removed the required property appliedToTransactions/items/discountClass/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 customer/fullName from the response with the 200 status

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

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

      response-required-property-removed

    • added qbd_credit_card_transaction subschema #2 to the creditCardTransaction response property anyOf list for the response status 200

      response-property-any-of-added

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

      response-property-any-of-added

    • added subschema #1 subschema #2 to the appliedToTransactions/items/discountClass 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 customer response property anyOf list for the response status 200

      response-property-any-of-added

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

      response-property-any-of-added

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

      response-property-any-of-added

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

      response-property-any-of-added

    • removed the amount enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed the quantity enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed the undefined enum value from the appliedToTransactions/items/linkedTransactions/items/linkType response property for the response status 200

      response-property-enum-value-removed

    • removed qbd_credit_card_transaction subschema #2 from the creditCardTransaction response property oneOf list for the response status 200

      response-property-one-of-removed

    • the appliedToTransactions/items/linkedTransactions/items/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

    • 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