# Generate credit note template Generates a UBL-compliant credit note template without customer personal data. The template can be used by the SDK to inject customer information and encrypt the credit note. Requires write_receipts OAuth scope. Accessible for: Company, Client Application Endpoint: POST /credit-note/template Version: v1 Security: cheqi_oauth ## Request fields (application/json): - `documentNumber` (string, required) This document number is a unique identifier provided by the seller, you use this number to uniquely identify this value in your system. Example: "CREDIT-NOTE-123456" - `originatorDocumentReference` (string, required) This is the document number of the original receipt this credit note refers to. Example: "RECEIPT-123456" - `identifiers` (array) A list of identifiers for the receipt. For example order number, purchase order number, etc. Example: "ORDER-123456, PURCHASE-ORDER-123456s" - `identifiers.value` (string) - `identifiers.schemeAgencyID` (string) - `identifiers.schemeAgencyName` (string) - `identifiers.schemeDataURI` (string) - `identifiers.schemeID` (string) - `identifiers.schemeName` (string) - `identifiers.schemeURI` (string) - `identifiers.schemeVersionID` (string) - `issueDate` (string, required) The date when the purchase receipt was issued. Example: "2022-01-01T00:00:00Z" - `currency` (string, required) The currency in which the purchase receipt is issued. Example: "EUR, USD, GBP" - `invoiceSubtotal` (number, required) The subtotal of the invoice, calculated as the sum of all line items before any overall invoice-level adjustments or taxes. This amount represents the total value of goods or services listed on the invoice. Example: 100 - `totalBeforeTax` (number, required) The total amount of the invoice excluding taxes, but including any overall discounts or charges. This amount may differ from the invoiceSubtotal if there are invoice-level adjustments. Example: 100 - `totalTaxAmount` (number, required) The total tax amount for the receipt. This should equal the sum of all tax amounts in the taxes list. Example: 100 - `totalAmount` (number, required) The total amount charged to the customer. Should equal totalBeforeTax + totalTaxAmount. Example: 100 - `products` (array, required) The list of products included in the purchase receipt. Must contain at least one product. - `products.name` (string, required) The product name Example: "Product Name" - `products.brand` (string, required) The brand name Example: "Brand Name" - `products.identifier` (string, required) The identifier or article number (merchant-defined) Example: "123456" - `products.description` (string) The description of the product - `products.quantity` (number, required) The quantity of this item Example: 20 - `products.baseQuantity` (number) The base quantity of this item Example: 20 - `products.unitCode` (string, required) The unit of measure code Enum: "C62", "EA", "KGM", "GRM", "MGM", "TNE", "LBR", "ONZ", "LTR", "MLT", "CLT", "HLT", "MTQ", "CMQ", "GLL", "GLI", "MTR", "CMT", "MMT", "KMT", "INH", "FOT", "YRD", "SMI", "MTK", "CMK", "FTK", "INK", "SEC", "MIN", "HUR", "DAY", "WEE", "MON", "ANN", "SET", "PR", "DZN", "NMP", "XPK", "BX", "CT", "CS", "PK", "PF", "BO", "CA", "BG", "E48", "ACT", "E51", "AD", "2P", "4L" - `products.period` (object) - `products.period.startDate` (string) - `products.period.startTime` (string) - `products.period.endDate` (string) - `products.period.endTime` (string) - `products.period.durationMeasure` (object) - `products.period.durationMeasure.unitCode` (string) - `products.period.durationMeasure.unitCodeListVersionID` (string) - `products.period.descriptionCode` (object) - `products.period.descriptionCode.languageID` (string) - `products.period.descriptionCode.listAgencyID` (string) - `products.period.descriptionCode.listAgencyName` (string) - `products.period.descriptionCode.listID` (string) - `products.period.descriptionCode.listName` (string) - `products.period.descriptionCode.listSchemeURI` (string) - `products.period.descriptionCode.listURI` (string) - `products.period.descriptionCode.listVersionID` (string) - `products.period.descriptionCode.name` (string) - `products.period.description` (string) - `products.unitPrice` (number, required) The unit price of this item Example: 10 - `products.discounts` (array) The discounts applied to this line item - `products.discounts.amount` (number, required) The total discount amount Example: 5 - `products.discounts.percentage` (number) The percentage discount Example: 20 - `products.discounts.label` (string) A human-readable label for the discount Example: "Black Friday" - `products.charges` (array) The extra charges applied to this line item - `products.charges.amount` (number, required) The charge amount Example: 5 - `products.charges.percentage` (number) The percentage charge Example: 3 - `products.charges.label` (string) The charge label, for example "Shipping fee" or "Service fee" Example: "Shipping" - `products.taxes` (array, required) The taxes applied to this line item - `products.taxes.rate` (number, required) The tax rate as a percentage (e.g. 21.0 for 21%) Example: 21 - `products.taxes.type` (string, required) The type of tax, e.g. "VAT", "GST", "Sales Tax" Example: "VAT" - `products.taxes.amount` (number) The calculated tax amount Example: 10 - `products.taxes.taxableAmount` (number, required) The total taxable amount for this tax rate Example: 10 - `products.taxes.label` (string) The label of the tax Example: "VAT 21%" - `products.subtotal` (number, required) The line subtotal, before tax. Typically: quantity * unitPrice - discounts + charges (net). Example: 10 - `products.total` (number, required) The line total, after tax. Typically: subtotal + tax amounts (gross). Example: 10 - `discounts` (array) Overall discounts applied at the receipt level (not product-specific). Examples: "Loyalty discount", "Coupon code", "Volume discount" - `charges` (array) Overall charges applied at the receipt level (not product-specific). Examples: "Delivery fee", "Administration free", "Services charge" - `taxes` (array, required) Tax breakdown for the receipt. Each Tax entry represents a tax category applied to the receipt (e.g., VAT 21%, VAT 9%). The total tax amount is the sum of all tax amounts in this list. - `note` (string) A note that the seller wants to include on the credit note ## Response 201 fields (*/*): - `id` (object) - `id.value` (string) - `id.schemeAgencyID` (string) - `id.schemeAgencyName` (string) - `id.schemeDataURI` (string) - `id.schemeID` (string) - `id.schemeName` (string) - `id.schemeURI` (string) - `id.schemeVersionID` (string) - `issueDate` (string) - `issueTime` (string) - `documentCurrencyCode` (string) - `note` (string) - `creditNoteTypeCode` (object) - `creditNoteTypeCode.languageID` (string) - `creditNoteTypeCode.listAgencyID` (string) - `creditNoteTypeCode.listAgencyName` (string) - `creditNoteTypeCode.listID` (string) - `creditNoteTypeCode.listName` (string) - `creditNoteTypeCode.listSchemeURI` (string) - `creditNoteTypeCode.listURI` (string) - `creditNoteTypeCode.listVersionID` (string) - `creditNoteTypeCode.name` (string) - `accountingSupplierParty` (object) - `accountingSupplierParty.endpointID` (object) - `accountingSupplierParty.partyIdentification` (array) - `accountingSupplierParty.partyName` (object) - `accountingSupplierParty.postalAddress` (object) - `accountingSupplierParty.postalAddress.addressTypeCode` (object) - `accountingSupplierParty.postalAddress.addressFormatCode` (object) - `accountingSupplierParty.postalAddress.postbox` (string) - `accountingSupplierParty.postalAddress.floor` (string) - `accountingSupplierParty.postalAddress.room` (string) - `accountingSupplierParty.postalAddress.streetName` (string) - `accountingSupplierParty.postalAddress.additionalStreetName` (string) - `accountingSupplierParty.postalAddress.blockName` (string) - `accountingSupplierParty.postalAddress.buildingName` (string) - `accountingSupplierParty.postalAddress.buildingNumber` (string) - `accountingSupplierParty.postalAddress.description` (array) - `accountingSupplierParty.postalAddress.inhouseMail` (string) - `accountingSupplierParty.postalAddress.department` (string) - `accountingSupplierParty.postalAddress.markAttention` (string) - `accountingSupplierParty.postalAddress.markCare` (string) - `accountingSupplierParty.postalAddress.plotIdentification` (string) - `accountingSupplierParty.postalAddress.citySubdivisionName` (string) - `accountingSupplierParty.postalAddress.cityName` (string) - `accountingSupplierParty.postalAddress.postalZone` (string) - `accountingSupplierParty.postalAddress.countrySubentity` (string) - `accountingSupplierParty.postalAddress.countrySubentityCode` (object) - `accountingSupplierParty.postalAddress.region` (string) - `accountingSupplierParty.postalAddress.district` (string) - `accountingSupplierParty.postalAddress.timezoneOffset` (string) - `accountingSupplierParty.postalAddress.addressLine` (array) - `accountingSupplierParty.postalAddress.addressLine.line` (string) - `accountingSupplierParty.postalAddress.country` (object) - `accountingSupplierParty.postalAddress.country.identificationCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.coordinateSystemCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCodeListVersionID` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.altitudeMeasure` (object) - `accountingSupplierParty.partyTaxScheme` (array) - `accountingSupplierParty.partyTaxScheme.companyID` (string) - `accountingSupplierParty.partyTaxScheme.taxScheme` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.taxTypeCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.currencyCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.jurisdictionRegionAddress` (object) - `accountingSupplierParty.partyLegalEntity` (object) - `accountingSupplierParty.partyLegalEntity.registrationName` (string) - `accountingSupplierParty.partyLegalEntity.companyLegalForm` (string) - `accountingSupplierParty.contact` (object) - `accountingSupplierParty.contact.jobTitle` (string) - `accountingSupplierParty.contact.telephone` (string) - `accountingSupplierParty.contact.telefax` (string) - `accountingSupplierParty.contact.electronicMail` (string) - `accountingSupplierParty.contact.otherCommunication` (array) - `accountingSupplierParty.contact.otherCommunication.channelCode` (object) - `accountingSupplierParty.contact.otherCommunication.channel` (string) - `accountingCustomerParty` (object) - `legalMonetaryTotal` (object) - `legalMonetaryTotal.lineExtensionAmount` (object) - `legalMonetaryTotal.lineExtensionAmount.currencyID` (string) - `legalMonetaryTotal.taxExclusiveAmount` (object) - `legalMonetaryTotal.taxInclusiveAmount` (object) - `legalMonetaryTotal.allowanceTotalAmount` (object) - `legalMonetaryTotal.allowanceTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.chargeTotalAmount` (object) - `legalMonetaryTotal.chargeTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.withholdingTaxTotalAmount` (object) - `legalMonetaryTotal.prepaidAmount` (object) - `legalMonetaryTotal.payableRoundingAmount` (object) - `legalMonetaryTotal.payableAmount` (object) - `legalMonetaryTotal.payableAlternativeAmount` (object) - `originatorDocumentReference` (array) - `originatorDocumentReference.copyIndicator` (boolean) - `originatorDocumentReference.uuid` (string) - `originatorDocumentReference.documentTypeCode` (string) - `originatorDocumentReference.referencedDocumentInternalAddress` (string) - `originatorDocumentReference.localeCode` (string) - `originatorDocumentReference.versionID` (string) - `originatorDocumentReference.documentStatusCode` (string) - `originatorDocumentReference.documentDescription` (string) - `originatorDocumentReference.attachment` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.mimeCode` (string) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.filename` (string) - `originatorDocumentReference.attachment.externalReference` (object) - `originatorDocumentReference.attachment.externalReference.uri` (string) - `originatorDocumentReference.validityPeriod` (object) - `originatorDocumentReference.validityPeriod.startDate` (string) - `originatorDocumentReference.validityPeriod.startTime` (string) - `originatorDocumentReference.validityPeriod.endDate` (string) - `originatorDocumentReference.validityPeriod.endTime` (string) - `originatorDocumentReference.validityPeriod.durationMeasure` (object) - `originatorDocumentReference.validityPeriod.descriptionCode` (object) - `originatorDocumentReference.issuerParty` (object) - `originatorDocumentReference.resultOfVerification` (object) - `originatorDocumentReference.resultOfVerification.validatorID` (object) - `originatorDocumentReference.resultOfVerification.validationResultCode` (string) - `originatorDocumentReference.resultOfVerification.validationDate` (string) - `originatorDocumentReference.resultOfVerification.validationTime` (string) - `originatorDocumentReference.resultOfVerification.validateProcess` (string) - `originatorDocumentReference.resultOfVerification.validateTool` (string) - `originatorDocumentReference.resultOfVerification.validateToolVersion` (string) - `originatorDocumentReference.resultOfVerification.signatoryParty` (object) - `creditNoteLine` (array) - `creditNoteLine.creditedQuantity` (object) - `creditNoteLine.creditedQuantity.unitCodeListAgencyID` (string) - `creditNoteLine.creditedQuantity.unitCodeListAgencyName` (string) - `creditNoteLine.creditedQuantity.unitCodeListID` (string) - `creditNoteLine.invoicePeriod` (object) - `creditNoteLine.item` (object) - `creditNoteLine.item.packQuantity` (object) - `creditNoteLine.item.packSizeNumeric` (number) - `creditNoteLine.item.catalogueIndicator` (boolean) - `creditNoteLine.item.itemTypeCode` (object) - `creditNoteLine.item.hazardousRiskIndicator` (boolean) - `creditNoteLine.item.additionalInformation` (array) - `creditNoteLine.item.keyword` (array) - `creditNoteLine.item.brandName` (array) - `creditNoteLine.item.modelName` (array) - `creditNoteLine.item.warrantyInformation` (array) - `creditNoteLine.item.buyersItemIdentification` (object) - `creditNoteLine.item.buyersItemIdentification.extendedID` (object) - `creditNoteLine.item.buyersItemIdentification.barcodeSymbologyID` (object) - `creditNoteLine.item.buyersItemIdentification.issuerScopeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute` (array) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.attributeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.positionCode` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension` (array) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.measure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.minimumMeasure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.maximumMeasure` (object) - `creditNoteLine.item.sellersItemIdentification` (object) - `creditNoteLine.item.manufacturersItemIdentification` (object) - `creditNoteLine.item.standardItemIdentification` (object) - `creditNoteLine.item.catalogueItemIdentification` (object) - `creditNoteLine.item.additionalItemIdentification` (array) - `creditNoteLine.item.catalogueDocumentReference` (object) - `creditNoteLine.item.itemSpecificationDocumentReference` (array) - `creditNoteLine.item.originCountry` (object) - `creditNoteLine.item.commodityClassification` (array) - `creditNoteLine.item.commodityClassification.natureCode` (string) - `creditNoteLine.item.commodityClassification.cargoTypeCode` (string) - `creditNoteLine.item.commodityClassification.commodityCode` (string) - `creditNoteLine.item.commodityClassification.itemClassificationCode` (object) - `creditNoteLine.item.transactionConditions` (array) - `creditNoteLine.item.transactionConditions.actionCode` (object) - `creditNoteLine.item.transactionConditions.documentReference` (array) - `creditNoteLine.item.classifiedTaxCategory` (array) - `creditNoteLine.item.classifiedTaxCategory.percent` (number) - `creditNoteLine.item.classifiedTaxCategory.baseUnitMeasure` (object) - `creditNoteLine.item.classifiedTaxCategory.perUnitAmount` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReasonCode` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReason` (array) - `creditNoteLine.item.classifiedTaxCategory.tierRange` (string) - `creditNoteLine.item.classifiedTaxCategory.tierRatePercent` (number) - `creditNoteLine.item.additionalItemProperty` (array) - `creditNoteLine.item.additionalItemProperty.nameCode` (object) - `creditNoteLine.item.additionalItemProperty.testMethod` (string) - `creditNoteLine.item.additionalItemProperty.valueQuantity` (object) - `creditNoteLine.item.additionalItemProperty.valueQualifier` (array) - `creditNoteLine.item.additionalItemProperty.importanceCode` (object) - `creditNoteLine.item.additionalItemProperty.listValue` (array) - `creditNoteLine.item.additionalItemProperty.usabilityPeriod` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyGroup` (array) - `creditNoteLine.item.additionalItemProperty.rangeDimension` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.minimumValue` (string) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.maximumValue` (string) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification` (object) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification.issuerScopeId` (object) - `creditNoteLine.item.manufacturerParty` (array) - `creditNoteLine.item.informationContentProviderParty` (object) - `creditNoteLine.item.originAddress` (array) - `creditNoteLine.item.itemInstance` (array) - `creditNoteLine.item.itemInstance.productTraceID` (object) - `creditNoteLine.item.itemInstance.manufactureDate` (string) - `creditNoteLine.item.itemInstance.manufactureTime` (object) - `creditNoteLine.item.itemInstance.manufactureTime.hour` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.minute` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.second` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.nano` (integer) - `creditNoteLine.item.itemInstance.bestBeforeDate` (string) - `creditNoteLine.item.itemInstance.registrationID` (object) - `creditNoteLine.item.itemInstance.serialID` (object) - `creditNoteLine.item.itemInstance.lotIdentification` (object) - `creditNoteLine.item.itemInstance.lotIdentification.lotNumberID` (object) - `creditNoteLine.item.itemInstance.lotIdentification.expiryDate` (string) - `creditNoteLine.item.certificate` (array) - `creditNoteLine.item.certificate.certificateTypeCode` (string) - `creditNoteLine.item.certificate.certificateType` (array) - `creditNoteLine.item.certificate.remarks` (array) - `creditNoteLine.item.certificate.signature` (array) - `creditNoteLine.item.certificate.signature.reasonCode` (object) - `creditNoteLine.item.certificate.signature.canonicalizationMethod` (string) - `creditNoteLine.item.certificate.signature.signatureMethod` (string) - `creditNoteLine.item.certificate.signature.digitalSignatureAttachment` (object) - `creditNoteLine.item.dimension` (array) - `creditNoteLine.item.environmentalEmission` (array) - `creditNoteLine.item.environmentalEmission.environmentalEmissionTypeCode` (string) - `creditNoteLine.item.environmentalEmission.valueMeasure` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.calculationMethodCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.fullnessIndicationCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.conditions` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.locationTypeCode` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.informationURI` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.address` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementToLocation` (object) - `creditNoteLine.price` (object) - `creditNoteLine.price.priceAmount` (object) - `creditNoteLine.price.taxInclusivePriceAmount` (object) - `creditNoteLine.price.baseQuantity` (object) - `creditNoteLine.price.priceChangeReason` (array) - `creditNoteLine.price.priceTypeCode` (object) - `creditNoteLine.price.priceType` (string) - `creditNoteLine.price.orderableUnitFactorRate` (number) - `creditNoteLine.price.priceList` (object) - `creditNoteLine.price.priceList.statusCode` (object) - `creditNoteLine.price.allowanceCharge` (array) - `creditNoteLine.price.allowanceCharge.chargeIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.allowanceChargeReasonCode` (object) - `creditNoteLine.price.allowanceCharge.allowanceChargeReason` (array) - `creditNoteLine.price.allowanceCharge.multiplierFactorNumeric` (number) - `creditNoteLine.price.allowanceCharge.prepaidIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.sequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.amount` (object) - `creditNoteLine.price.allowanceCharge.baseAmount` (object) - `creditNoteLine.price.allowanceCharge.accountingCostCode` (object) - `creditNoteLine.price.allowanceCharge.accountingCost` (string) - `creditNoteLine.price.allowanceCharge.taxCategory` (object) - `creditNoteLine.price.allowanceCharge.taxTotal` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.calculationSequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.taxTotal.roundingAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxEvidenceIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxIncludedIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals` (array) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.taxableAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.transactionCurrencyTaxAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansDescription` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentID` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentDueDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentChannelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.chargeBearerCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.serviceLevelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.primaryAccountNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.networkID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.validityStartDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issuerID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issueNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.getcV2ID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardChipCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.chipApplicationID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.holderName` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.roleCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName.languageLocaleID` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountFormatCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.paymentNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch.financialInstitution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payeeFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount.accountID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.mandateTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaidAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.signatureID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.payerParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.paymentReversalPeriod` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause.content` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaymentInstructionsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingInstrumentCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.contractDocumentReference` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionType` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.printQualifier` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumCopiesNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumOriginalsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.communication` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.party` (object) - `verificationNonce` (string) ## Response 400 fields (*/*): - `id` (object) - `id.value` (string) - `id.schemeAgencyID` (string) - `id.schemeAgencyName` (string) - `id.schemeDataURI` (string) - `id.schemeID` (string) - `id.schemeName` (string) - `id.schemeURI` (string) - `id.schemeVersionID` (string) - `issueDate` (string) - `issueTime` (string) - `documentCurrencyCode` (string) - `note` (string) - `creditNoteTypeCode` (object) - `creditNoteTypeCode.languageID` (string) - `creditNoteTypeCode.listAgencyID` (string) - `creditNoteTypeCode.listAgencyName` (string) - `creditNoteTypeCode.listID` (string) - `creditNoteTypeCode.listName` (string) - `creditNoteTypeCode.listSchemeURI` (string) - `creditNoteTypeCode.listURI` (string) - `creditNoteTypeCode.listVersionID` (string) - `creditNoteTypeCode.name` (string) - `accountingSupplierParty` (object) - `accountingSupplierParty.endpointID` (object) - `accountingSupplierParty.partyIdentification` (array) - `accountingSupplierParty.partyName` (object) - `accountingSupplierParty.postalAddress` (object) - `accountingSupplierParty.postalAddress.addressTypeCode` (object) - `accountingSupplierParty.postalAddress.addressFormatCode` (object) - `accountingSupplierParty.postalAddress.postbox` (string) - `accountingSupplierParty.postalAddress.floor` (string) - `accountingSupplierParty.postalAddress.room` (string) - `accountingSupplierParty.postalAddress.streetName` (string) - `accountingSupplierParty.postalAddress.additionalStreetName` (string) - `accountingSupplierParty.postalAddress.blockName` (string) - `accountingSupplierParty.postalAddress.buildingName` (string) - `accountingSupplierParty.postalAddress.buildingNumber` (string) - `accountingSupplierParty.postalAddress.description` (array) - `accountingSupplierParty.postalAddress.inhouseMail` (string) - `accountingSupplierParty.postalAddress.department` (string) - `accountingSupplierParty.postalAddress.markAttention` (string) - `accountingSupplierParty.postalAddress.markCare` (string) - `accountingSupplierParty.postalAddress.plotIdentification` (string) - `accountingSupplierParty.postalAddress.citySubdivisionName` (string) - `accountingSupplierParty.postalAddress.cityName` (string) - `accountingSupplierParty.postalAddress.postalZone` (string) - `accountingSupplierParty.postalAddress.countrySubentity` (string) - `accountingSupplierParty.postalAddress.countrySubentityCode` (object) - `accountingSupplierParty.postalAddress.region` (string) - `accountingSupplierParty.postalAddress.district` (string) - `accountingSupplierParty.postalAddress.timezoneOffset` (string) - `accountingSupplierParty.postalAddress.addressLine` (array) - `accountingSupplierParty.postalAddress.addressLine.line` (string) - `accountingSupplierParty.postalAddress.country` (object) - `accountingSupplierParty.postalAddress.country.identificationCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.coordinateSystemCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCodeListVersionID` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.altitudeMeasure` (object) - `accountingSupplierParty.partyTaxScheme` (array) - `accountingSupplierParty.partyTaxScheme.companyID` (string) - `accountingSupplierParty.partyTaxScheme.taxScheme` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.taxTypeCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.currencyCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.jurisdictionRegionAddress` (object) - `accountingSupplierParty.partyLegalEntity` (object) - `accountingSupplierParty.partyLegalEntity.registrationName` (string) - `accountingSupplierParty.partyLegalEntity.companyLegalForm` (string) - `accountingSupplierParty.contact` (object) - `accountingSupplierParty.contact.jobTitle` (string) - `accountingSupplierParty.contact.telephone` (string) - `accountingSupplierParty.contact.telefax` (string) - `accountingSupplierParty.contact.electronicMail` (string) - `accountingSupplierParty.contact.otherCommunication` (array) - `accountingSupplierParty.contact.otherCommunication.channelCode` (object) - `accountingSupplierParty.contact.otherCommunication.channel` (string) - `accountingCustomerParty` (object) - `legalMonetaryTotal` (object) - `legalMonetaryTotal.lineExtensionAmount` (object) - `legalMonetaryTotal.lineExtensionAmount.currencyID` (string) - `legalMonetaryTotal.taxExclusiveAmount` (object) - `legalMonetaryTotal.taxInclusiveAmount` (object) - `legalMonetaryTotal.allowanceTotalAmount` (object) - `legalMonetaryTotal.allowanceTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.chargeTotalAmount` (object) - `legalMonetaryTotal.chargeTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.withholdingTaxTotalAmount` (object) - `legalMonetaryTotal.prepaidAmount` (object) - `legalMonetaryTotal.payableRoundingAmount` (object) - `legalMonetaryTotal.payableAmount` (object) - `legalMonetaryTotal.payableAlternativeAmount` (object) - `originatorDocumentReference` (array) - `originatorDocumentReference.copyIndicator` (boolean) - `originatorDocumentReference.uuid` (string) - `originatorDocumentReference.documentTypeCode` (string) - `originatorDocumentReference.referencedDocumentInternalAddress` (string) - `originatorDocumentReference.localeCode` (string) - `originatorDocumentReference.versionID` (string) - `originatorDocumentReference.documentStatusCode` (string) - `originatorDocumentReference.documentDescription` (string) - `originatorDocumentReference.attachment` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.mimeCode` (string) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.filename` (string) - `originatorDocumentReference.attachment.externalReference` (object) - `originatorDocumentReference.attachment.externalReference.uri` (string) - `originatorDocumentReference.validityPeriod` (object) - `originatorDocumentReference.validityPeriod.startDate` (string) - `originatorDocumentReference.validityPeriod.startTime` (string) - `originatorDocumentReference.validityPeriod.endDate` (string) - `originatorDocumentReference.validityPeriod.endTime` (string) - `originatorDocumentReference.validityPeriod.durationMeasure` (object) - `originatorDocumentReference.validityPeriod.descriptionCode` (object) - `originatorDocumentReference.issuerParty` (object) - `originatorDocumentReference.resultOfVerification` (object) - `originatorDocumentReference.resultOfVerification.validatorID` (object) - `originatorDocumentReference.resultOfVerification.validationResultCode` (string) - `originatorDocumentReference.resultOfVerification.validationDate` (string) - `originatorDocumentReference.resultOfVerification.validationTime` (string) - `originatorDocumentReference.resultOfVerification.validateProcess` (string) - `originatorDocumentReference.resultOfVerification.validateTool` (string) - `originatorDocumentReference.resultOfVerification.validateToolVersion` (string) - `originatorDocumentReference.resultOfVerification.signatoryParty` (object) - `creditNoteLine` (array) - `creditNoteLine.creditedQuantity` (object) - `creditNoteLine.creditedQuantity.unitCodeListAgencyID` (string) - `creditNoteLine.creditedQuantity.unitCodeListAgencyName` (string) - `creditNoteLine.creditedQuantity.unitCodeListID` (string) - `creditNoteLine.invoicePeriod` (object) - `creditNoteLine.item` (object) - `creditNoteLine.item.packQuantity` (object) - `creditNoteLine.item.packSizeNumeric` (number) - `creditNoteLine.item.catalogueIndicator` (boolean) - `creditNoteLine.item.itemTypeCode` (object) - `creditNoteLine.item.hazardousRiskIndicator` (boolean) - `creditNoteLine.item.additionalInformation` (array) - `creditNoteLine.item.keyword` (array) - `creditNoteLine.item.brandName` (array) - `creditNoteLine.item.modelName` (array) - `creditNoteLine.item.warrantyInformation` (array) - `creditNoteLine.item.buyersItemIdentification` (object) - `creditNoteLine.item.buyersItemIdentification.extendedID` (object) - `creditNoteLine.item.buyersItemIdentification.barcodeSymbologyID` (object) - `creditNoteLine.item.buyersItemIdentification.issuerScopeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute` (array) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.attributeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.positionCode` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension` (array) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.measure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.minimumMeasure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.maximumMeasure` (object) - `creditNoteLine.item.sellersItemIdentification` (object) - `creditNoteLine.item.manufacturersItemIdentification` (object) - `creditNoteLine.item.standardItemIdentification` (object) - `creditNoteLine.item.catalogueItemIdentification` (object) - `creditNoteLine.item.additionalItemIdentification` (array) - `creditNoteLine.item.catalogueDocumentReference` (object) - `creditNoteLine.item.itemSpecificationDocumentReference` (array) - `creditNoteLine.item.originCountry` (object) - `creditNoteLine.item.commodityClassification` (array) - `creditNoteLine.item.commodityClassification.natureCode` (string) - `creditNoteLine.item.commodityClassification.cargoTypeCode` (string) - `creditNoteLine.item.commodityClassification.commodityCode` (string) - `creditNoteLine.item.commodityClassification.itemClassificationCode` (object) - `creditNoteLine.item.transactionConditions` (array) - `creditNoteLine.item.transactionConditions.actionCode` (object) - `creditNoteLine.item.transactionConditions.documentReference` (array) - `creditNoteLine.item.classifiedTaxCategory` (array) - `creditNoteLine.item.classifiedTaxCategory.percent` (number) - `creditNoteLine.item.classifiedTaxCategory.baseUnitMeasure` (object) - `creditNoteLine.item.classifiedTaxCategory.perUnitAmount` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReasonCode` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReason` (array) - `creditNoteLine.item.classifiedTaxCategory.tierRange` (string) - `creditNoteLine.item.classifiedTaxCategory.tierRatePercent` (number) - `creditNoteLine.item.additionalItemProperty` (array) - `creditNoteLine.item.additionalItemProperty.nameCode` (object) - `creditNoteLine.item.additionalItemProperty.testMethod` (string) - `creditNoteLine.item.additionalItemProperty.valueQuantity` (object) - `creditNoteLine.item.additionalItemProperty.valueQualifier` (array) - `creditNoteLine.item.additionalItemProperty.importanceCode` (object) - `creditNoteLine.item.additionalItemProperty.listValue` (array) - `creditNoteLine.item.additionalItemProperty.usabilityPeriod` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyGroup` (array) - `creditNoteLine.item.additionalItemProperty.rangeDimension` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.minimumValue` (string) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.maximumValue` (string) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification` (object) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification.issuerScopeId` (object) - `creditNoteLine.item.manufacturerParty` (array) - `creditNoteLine.item.informationContentProviderParty` (object) - `creditNoteLine.item.originAddress` (array) - `creditNoteLine.item.itemInstance` (array) - `creditNoteLine.item.itemInstance.productTraceID` (object) - `creditNoteLine.item.itemInstance.manufactureDate` (string) - `creditNoteLine.item.itemInstance.manufactureTime` (object) - `creditNoteLine.item.itemInstance.manufactureTime.hour` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.minute` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.second` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.nano` (integer) - `creditNoteLine.item.itemInstance.bestBeforeDate` (string) - `creditNoteLine.item.itemInstance.registrationID` (object) - `creditNoteLine.item.itemInstance.serialID` (object) - `creditNoteLine.item.itemInstance.lotIdentification` (object) - `creditNoteLine.item.itemInstance.lotIdentification.lotNumberID` (object) - `creditNoteLine.item.itemInstance.lotIdentification.expiryDate` (string) - `creditNoteLine.item.certificate` (array) - `creditNoteLine.item.certificate.certificateTypeCode` (string) - `creditNoteLine.item.certificate.certificateType` (array) - `creditNoteLine.item.certificate.remarks` (array) - `creditNoteLine.item.certificate.signature` (array) - `creditNoteLine.item.certificate.signature.reasonCode` (object) - `creditNoteLine.item.certificate.signature.canonicalizationMethod` (string) - `creditNoteLine.item.certificate.signature.signatureMethod` (string) - `creditNoteLine.item.certificate.signature.digitalSignatureAttachment` (object) - `creditNoteLine.item.dimension` (array) - `creditNoteLine.item.environmentalEmission` (array) - `creditNoteLine.item.environmentalEmission.environmentalEmissionTypeCode` (string) - `creditNoteLine.item.environmentalEmission.valueMeasure` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.calculationMethodCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.fullnessIndicationCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.conditions` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.locationTypeCode` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.informationURI` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.address` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementToLocation` (object) - `creditNoteLine.price` (object) - `creditNoteLine.price.priceAmount` (object) - `creditNoteLine.price.taxInclusivePriceAmount` (object) - `creditNoteLine.price.baseQuantity` (object) - `creditNoteLine.price.priceChangeReason` (array) - `creditNoteLine.price.priceTypeCode` (object) - `creditNoteLine.price.priceType` (string) - `creditNoteLine.price.orderableUnitFactorRate` (number) - `creditNoteLine.price.priceList` (object) - `creditNoteLine.price.priceList.statusCode` (object) - `creditNoteLine.price.allowanceCharge` (array) - `creditNoteLine.price.allowanceCharge.chargeIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.allowanceChargeReasonCode` (object) - `creditNoteLine.price.allowanceCharge.allowanceChargeReason` (array) - `creditNoteLine.price.allowanceCharge.multiplierFactorNumeric` (number) - `creditNoteLine.price.allowanceCharge.prepaidIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.sequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.amount` (object) - `creditNoteLine.price.allowanceCharge.baseAmount` (object) - `creditNoteLine.price.allowanceCharge.accountingCostCode` (object) - `creditNoteLine.price.allowanceCharge.accountingCost` (string) - `creditNoteLine.price.allowanceCharge.taxCategory` (object) - `creditNoteLine.price.allowanceCharge.taxTotal` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.calculationSequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.taxTotal.roundingAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxEvidenceIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxIncludedIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals` (array) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.taxableAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.transactionCurrencyTaxAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansDescription` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentID` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentDueDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentChannelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.chargeBearerCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.serviceLevelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.primaryAccountNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.networkID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.validityStartDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issuerID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issueNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.getcV2ID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardChipCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.chipApplicationID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.holderName` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.roleCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName.languageLocaleID` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountFormatCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.paymentNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch.financialInstitution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payeeFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount.accountID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.mandateTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaidAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.signatureID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.payerParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.paymentReversalPeriod` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause.content` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaymentInstructionsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingInstrumentCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.contractDocumentReference` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionType` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.printQualifier` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumCopiesNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumOriginalsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.communication` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.party` (object) - `verificationNonce` (string) ## Response 403 fields (*/*): - `id` (object) - `id.value` (string) - `id.schemeAgencyID` (string) - `id.schemeAgencyName` (string) - `id.schemeDataURI` (string) - `id.schemeID` (string) - `id.schemeName` (string) - `id.schemeURI` (string) - `id.schemeVersionID` (string) - `issueDate` (string) - `issueTime` (string) - `documentCurrencyCode` (string) - `note` (string) - `creditNoteTypeCode` (object) - `creditNoteTypeCode.languageID` (string) - `creditNoteTypeCode.listAgencyID` (string) - `creditNoteTypeCode.listAgencyName` (string) - `creditNoteTypeCode.listID` (string) - `creditNoteTypeCode.listName` (string) - `creditNoteTypeCode.listSchemeURI` (string) - `creditNoteTypeCode.listURI` (string) - `creditNoteTypeCode.listVersionID` (string) - `creditNoteTypeCode.name` (string) - `accountingSupplierParty` (object) - `accountingSupplierParty.endpointID` (object) - `accountingSupplierParty.partyIdentification` (array) - `accountingSupplierParty.partyName` (object) - `accountingSupplierParty.postalAddress` (object) - `accountingSupplierParty.postalAddress.addressTypeCode` (object) - `accountingSupplierParty.postalAddress.addressFormatCode` (object) - `accountingSupplierParty.postalAddress.postbox` (string) - `accountingSupplierParty.postalAddress.floor` (string) - `accountingSupplierParty.postalAddress.room` (string) - `accountingSupplierParty.postalAddress.streetName` (string) - `accountingSupplierParty.postalAddress.additionalStreetName` (string) - `accountingSupplierParty.postalAddress.blockName` (string) - `accountingSupplierParty.postalAddress.buildingName` (string) - `accountingSupplierParty.postalAddress.buildingNumber` (string) - `accountingSupplierParty.postalAddress.description` (array) - `accountingSupplierParty.postalAddress.inhouseMail` (string) - `accountingSupplierParty.postalAddress.department` (string) - `accountingSupplierParty.postalAddress.markAttention` (string) - `accountingSupplierParty.postalAddress.markCare` (string) - `accountingSupplierParty.postalAddress.plotIdentification` (string) - `accountingSupplierParty.postalAddress.citySubdivisionName` (string) - `accountingSupplierParty.postalAddress.cityName` (string) - `accountingSupplierParty.postalAddress.postalZone` (string) - `accountingSupplierParty.postalAddress.countrySubentity` (string) - `accountingSupplierParty.postalAddress.countrySubentityCode` (object) - `accountingSupplierParty.postalAddress.region` (string) - `accountingSupplierParty.postalAddress.district` (string) - `accountingSupplierParty.postalAddress.timezoneOffset` (string) - `accountingSupplierParty.postalAddress.addressLine` (array) - `accountingSupplierParty.postalAddress.addressLine.line` (string) - `accountingSupplierParty.postalAddress.country` (object) - `accountingSupplierParty.postalAddress.country.identificationCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.coordinateSystemCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCode` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDegreesMeasure.unitCodeListVersionID` (string) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.latitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDegreesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeMinutesMeasure` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.longitudeDirectionCode` (object) - `accountingSupplierParty.postalAddress.locationCoordinate.altitudeMeasure` (object) - `accountingSupplierParty.partyTaxScheme` (array) - `accountingSupplierParty.partyTaxScheme.companyID` (string) - `accountingSupplierParty.partyTaxScheme.taxScheme` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.taxTypeCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.currencyCode` (object) - `accountingSupplierParty.partyTaxScheme.taxScheme.jurisdictionRegionAddress` (object) - `accountingSupplierParty.partyLegalEntity` (object) - `accountingSupplierParty.partyLegalEntity.registrationName` (string) - `accountingSupplierParty.partyLegalEntity.companyLegalForm` (string) - `accountingSupplierParty.contact` (object) - `accountingSupplierParty.contact.jobTitle` (string) - `accountingSupplierParty.contact.telephone` (string) - `accountingSupplierParty.contact.telefax` (string) - `accountingSupplierParty.contact.electronicMail` (string) - `accountingSupplierParty.contact.otherCommunication` (array) - `accountingSupplierParty.contact.otherCommunication.channelCode` (object) - `accountingSupplierParty.contact.otherCommunication.channel` (string) - `accountingCustomerParty` (object) - `legalMonetaryTotal` (object) - `legalMonetaryTotal.lineExtensionAmount` (object) - `legalMonetaryTotal.lineExtensionAmount.currencyID` (string) - `legalMonetaryTotal.taxExclusiveAmount` (object) - `legalMonetaryTotal.taxInclusiveAmount` (object) - `legalMonetaryTotal.allowanceTotalAmount` (object) - `legalMonetaryTotal.allowanceTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.chargeTotalAmount` (object) - `legalMonetaryTotal.chargeTotalTaxInclusiveAmount` (object) - `legalMonetaryTotal.withholdingTaxTotalAmount` (object) - `legalMonetaryTotal.prepaidAmount` (object) - `legalMonetaryTotal.payableRoundingAmount` (object) - `legalMonetaryTotal.payableAmount` (object) - `legalMonetaryTotal.payableAlternativeAmount` (object) - `originatorDocumentReference` (array) - `originatorDocumentReference.copyIndicator` (boolean) - `originatorDocumentReference.uuid` (string) - `originatorDocumentReference.documentTypeCode` (string) - `originatorDocumentReference.referencedDocumentInternalAddress` (string) - `originatorDocumentReference.localeCode` (string) - `originatorDocumentReference.versionID` (string) - `originatorDocumentReference.documentStatusCode` (string) - `originatorDocumentReference.documentDescription` (string) - `originatorDocumentReference.attachment` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject` (object) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.mimeCode` (string) - `originatorDocumentReference.attachment.embeddedDocumentBinaryObject.filename` (string) - `originatorDocumentReference.attachment.externalReference` (object) - `originatorDocumentReference.attachment.externalReference.uri` (string) - `originatorDocumentReference.validityPeriod` (object) - `originatorDocumentReference.validityPeriod.startDate` (string) - `originatorDocumentReference.validityPeriod.startTime` (string) - `originatorDocumentReference.validityPeriod.endDate` (string) - `originatorDocumentReference.validityPeriod.endTime` (string) - `originatorDocumentReference.validityPeriod.durationMeasure` (object) - `originatorDocumentReference.validityPeriod.descriptionCode` (object) - `originatorDocumentReference.issuerParty` (object) - `originatorDocumentReference.resultOfVerification` (object) - `originatorDocumentReference.resultOfVerification.validatorID` (object) - `originatorDocumentReference.resultOfVerification.validationResultCode` (string) - `originatorDocumentReference.resultOfVerification.validationDate` (string) - `originatorDocumentReference.resultOfVerification.validationTime` (string) - `originatorDocumentReference.resultOfVerification.validateProcess` (string) - `originatorDocumentReference.resultOfVerification.validateTool` (string) - `originatorDocumentReference.resultOfVerification.validateToolVersion` (string) - `originatorDocumentReference.resultOfVerification.signatoryParty` (object) - `creditNoteLine` (array) - `creditNoteLine.creditedQuantity` (object) - `creditNoteLine.creditedQuantity.unitCodeListAgencyID` (string) - `creditNoteLine.creditedQuantity.unitCodeListAgencyName` (string) - `creditNoteLine.creditedQuantity.unitCodeListID` (string) - `creditNoteLine.invoicePeriod` (object) - `creditNoteLine.item` (object) - `creditNoteLine.item.packQuantity` (object) - `creditNoteLine.item.packSizeNumeric` (number) - `creditNoteLine.item.catalogueIndicator` (boolean) - `creditNoteLine.item.itemTypeCode` (object) - `creditNoteLine.item.hazardousRiskIndicator` (boolean) - `creditNoteLine.item.additionalInformation` (array) - `creditNoteLine.item.keyword` (array) - `creditNoteLine.item.brandName` (array) - `creditNoteLine.item.modelName` (array) - `creditNoteLine.item.warrantyInformation` (array) - `creditNoteLine.item.buyersItemIdentification` (object) - `creditNoteLine.item.buyersItemIdentification.extendedID` (object) - `creditNoteLine.item.buyersItemIdentification.barcodeSymbologyID` (object) - `creditNoteLine.item.buyersItemIdentification.issuerScopeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute` (array) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.attributeID` (object) - `creditNoteLine.item.buyersItemIdentification.physicalAttribute.positionCode` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension` (array) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.measure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.minimumMeasure` (object) - `creditNoteLine.item.buyersItemIdentification.measurementDimension.maximumMeasure` (object) - `creditNoteLine.item.sellersItemIdentification` (object) - `creditNoteLine.item.manufacturersItemIdentification` (object) - `creditNoteLine.item.standardItemIdentification` (object) - `creditNoteLine.item.catalogueItemIdentification` (object) - `creditNoteLine.item.additionalItemIdentification` (array) - `creditNoteLine.item.catalogueDocumentReference` (object) - `creditNoteLine.item.itemSpecificationDocumentReference` (array) - `creditNoteLine.item.originCountry` (object) - `creditNoteLine.item.commodityClassification` (array) - `creditNoteLine.item.commodityClassification.natureCode` (string) - `creditNoteLine.item.commodityClassification.cargoTypeCode` (string) - `creditNoteLine.item.commodityClassification.commodityCode` (string) - `creditNoteLine.item.commodityClassification.itemClassificationCode` (object) - `creditNoteLine.item.transactionConditions` (array) - `creditNoteLine.item.transactionConditions.actionCode` (object) - `creditNoteLine.item.transactionConditions.documentReference` (array) - `creditNoteLine.item.classifiedTaxCategory` (array) - `creditNoteLine.item.classifiedTaxCategory.percent` (number) - `creditNoteLine.item.classifiedTaxCategory.baseUnitMeasure` (object) - `creditNoteLine.item.classifiedTaxCategory.perUnitAmount` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReasonCode` (object) - `creditNoteLine.item.classifiedTaxCategory.taxExemptionReason` (array) - `creditNoteLine.item.classifiedTaxCategory.tierRange` (string) - `creditNoteLine.item.classifiedTaxCategory.tierRatePercent` (number) - `creditNoteLine.item.additionalItemProperty` (array) - `creditNoteLine.item.additionalItemProperty.nameCode` (object) - `creditNoteLine.item.additionalItemProperty.testMethod` (string) - `creditNoteLine.item.additionalItemProperty.valueQuantity` (object) - `creditNoteLine.item.additionalItemProperty.valueQualifier` (array) - `creditNoteLine.item.additionalItemProperty.importanceCode` (object) - `creditNoteLine.item.additionalItemProperty.listValue` (array) - `creditNoteLine.item.additionalItemProperty.usabilityPeriod` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyGroup` (array) - `creditNoteLine.item.additionalItemProperty.rangeDimension` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange` (object) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.minimumValue` (string) - `creditNoteLine.item.additionalItemProperty.itemPropertyRange.maximumValue` (string) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification` (object) - `creditNoteLine.item.additionalItemProperty.standardPropertyIdentification.issuerScopeId` (object) - `creditNoteLine.item.manufacturerParty` (array) - `creditNoteLine.item.informationContentProviderParty` (object) - `creditNoteLine.item.originAddress` (array) - `creditNoteLine.item.itemInstance` (array) - `creditNoteLine.item.itemInstance.productTraceID` (object) - `creditNoteLine.item.itemInstance.manufactureDate` (string) - `creditNoteLine.item.itemInstance.manufactureTime` (object) - `creditNoteLine.item.itemInstance.manufactureTime.hour` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.minute` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.second` (integer) - `creditNoteLine.item.itemInstance.manufactureTime.nano` (integer) - `creditNoteLine.item.itemInstance.bestBeforeDate` (string) - `creditNoteLine.item.itemInstance.registrationID` (object) - `creditNoteLine.item.itemInstance.serialID` (object) - `creditNoteLine.item.itemInstance.lotIdentification` (object) - `creditNoteLine.item.itemInstance.lotIdentification.lotNumberID` (object) - `creditNoteLine.item.itemInstance.lotIdentification.expiryDate` (string) - `creditNoteLine.item.certificate` (array) - `creditNoteLine.item.certificate.certificateTypeCode` (string) - `creditNoteLine.item.certificate.certificateType` (array) - `creditNoteLine.item.certificate.remarks` (array) - `creditNoteLine.item.certificate.signature` (array) - `creditNoteLine.item.certificate.signature.reasonCode` (object) - `creditNoteLine.item.certificate.signature.canonicalizationMethod` (string) - `creditNoteLine.item.certificate.signature.signatureMethod` (string) - `creditNoteLine.item.certificate.signature.digitalSignatureAttachment` (object) - `creditNoteLine.item.dimension` (array) - `creditNoteLine.item.environmentalEmission` (array) - `creditNoteLine.item.environmentalEmission.environmentalEmissionTypeCode` (string) - `creditNoteLine.item.environmentalEmission.valueMeasure` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.calculationMethodCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.fullnessIndicationCode` (string) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.conditions` (array) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.locationTypeCode` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.informationURI` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementFromLocation.address` (object) - `creditNoteLine.item.environmentalEmission.emissionCalculationMethod.measurementToLocation` (object) - `creditNoteLine.price` (object) - `creditNoteLine.price.priceAmount` (object) - `creditNoteLine.price.taxInclusivePriceAmount` (object) - `creditNoteLine.price.baseQuantity` (object) - `creditNoteLine.price.priceChangeReason` (array) - `creditNoteLine.price.priceTypeCode` (object) - `creditNoteLine.price.priceType` (string) - `creditNoteLine.price.orderableUnitFactorRate` (number) - `creditNoteLine.price.priceList` (object) - `creditNoteLine.price.priceList.statusCode` (object) - `creditNoteLine.price.allowanceCharge` (array) - `creditNoteLine.price.allowanceCharge.chargeIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.allowanceChargeReasonCode` (object) - `creditNoteLine.price.allowanceCharge.allowanceChargeReason` (array) - `creditNoteLine.price.allowanceCharge.multiplierFactorNumeric` (number) - `creditNoteLine.price.allowanceCharge.prepaidIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.sequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.amount` (object) - `creditNoteLine.price.allowanceCharge.baseAmount` (object) - `creditNoteLine.price.allowanceCharge.accountingCostCode` (object) - `creditNoteLine.price.allowanceCharge.accountingCost` (string) - `creditNoteLine.price.allowanceCharge.taxCategory` (object) - `creditNoteLine.price.allowanceCharge.taxTotal` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.calculationSequenceNumeric` (integer) - `creditNoteLine.price.allowanceCharge.taxTotal.roundingAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxEvidenceIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxIncludedIndicator` (boolean) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals` (array) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.taxableAmount` (object) - `creditNoteLine.price.allowanceCharge.taxTotal.taxSubtotals.transactionCurrencyTaxAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMeansDescription` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentID` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentDueDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentChannelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.instructionNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.chargeBearerCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.serviceLevelCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.primaryAccountNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.networkID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.validityStartDate` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issuerID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.issueNumberID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.getcV2ID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.cardChipCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.chipApplicationID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.holderName` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.cardAccount.roleCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.aliasName.languageLocaleID` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.accountFormatCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.paymentNote` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payerFinancialAccount.financialInstitutionBranch.financialInstitution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.payeeFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.creditAccount.accountID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.mandateTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaidAmount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.signatureID` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.payerParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.paymentReversalPeriod` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.clause.content` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.paymentMandate.maximumPaymentInstructionsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingInstrumentCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.contractDocumentReference` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingParty` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.tradeFinancing.financingFinancialAccount` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionTypeCode` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.distributionType` (array) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.printQualifier` (string) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumCopiesNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.maximumOriginalsNumeric` (number) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.communication` (object) - `creditNoteLine.price.allowanceCharge.paymentMeans.remittanceDocumentDistribution.party` (object) - `verificationNonce` (string)