mirror of
https://github.com/gcatanese/adyen-openapi.git
synced 2026-03-09 23:51:20 +00:00
spec release
This commit is contained in:
@@ -175,7 +175,8 @@
|
||||
"description" : "The type of dispute raised for the transaction.",
|
||||
"enum" : [
|
||||
"fraud",
|
||||
"notDelivered"
|
||||
"notDelivered",
|
||||
"duplicate"
|
||||
],
|
||||
"type" : "string"
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"url" : "https://github.com/Adyen/adyen-openapi"
|
||||
},
|
||||
"version" : "1",
|
||||
"x-timestamp" : "2025-03-21T17:33:57Z"
|
||||
"x-timestamp" : "2025-04-03T18:36:10Z"
|
||||
},
|
||||
"tags" : [ {
|
||||
"name" : "Dispute Attachments"
|
||||
@@ -425,7 +425,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -484,17 +484,43 @@
|
||||
"required" : [ "descriptionOfIssue", "lastExpectedDate", "whatWasNotDelivered" ],
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
@@ -532,6 +558,7 @@
|
||||
"$ref" : "#/components/schemas/Amount"
|
||||
},
|
||||
"duplicateInfo" : {
|
||||
"description" : "Additional information for raising a dispute of `type` **duplicate**. Required for disputes of `type` **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DuplicateInfo"
|
||||
},
|
||||
"fraudInfo" : {
|
||||
@@ -556,7 +583,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -645,17 +672,43 @@
|
||||
"PatchableNotDeliveredInfo" : {
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"url" : "https://github.com/Adyen/adyen-openapi"
|
||||
},
|
||||
"version" : "2",
|
||||
"x-timestamp" : "2025-03-21T17:33:58Z"
|
||||
"x-timestamp" : "2025-04-03T18:36:11Z"
|
||||
},
|
||||
"tags" : [ {
|
||||
"name" : "Dispute Attachments"
|
||||
@@ -425,7 +425,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -484,17 +484,43 @@
|
||||
"required" : [ "descriptionOfIssue", "lastExpectedDate", "whatWasNotDelivered" ],
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
@@ -532,6 +558,7 @@
|
||||
"$ref" : "#/components/schemas/Amount"
|
||||
},
|
||||
"duplicateInfo" : {
|
||||
"description" : "Additional information for raising a dispute of `type` **duplicate**. Required for disputes of `type` **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DuplicateInfo"
|
||||
},
|
||||
"fraudInfo" : {
|
||||
@@ -556,7 +583,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -645,17 +672,43 @@
|
||||
"PatchableNotDeliveredInfo" : {
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"url" : "https://github.com/Adyen/adyen-openapi"
|
||||
},
|
||||
"version" : "3",
|
||||
"x-timestamp" : "2025-03-21T17:33:58Z"
|
||||
"x-timestamp" : "2025-04-03T18:36:11Z"
|
||||
},
|
||||
"tags" : [ {
|
||||
"name" : "Dispute Attachments"
|
||||
@@ -425,7 +425,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -484,17 +484,43 @@
|
||||
"required" : [ "descriptionOfIssue", "lastExpectedDate", "whatWasNotDelivered" ],
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
@@ -532,6 +558,7 @@
|
||||
"$ref" : "#/components/schemas/Amount"
|
||||
},
|
||||
"duplicateInfo" : {
|
||||
"description" : "Additional information for raising a dispute of `type` **duplicate**. Required for disputes of `type` **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DuplicateInfo"
|
||||
},
|
||||
"fraudInfo" : {
|
||||
@@ -556,7 +583,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -645,17 +672,43 @@
|
||||
"PatchableNotDeliveredInfo" : {
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
"url" : "https://github.com/Adyen/adyen-openapi"
|
||||
},
|
||||
"version" : "4",
|
||||
"x-timestamp" : "2025-03-21T17:33:58Z"
|
||||
"x-timestamp" : "2025-04-03T18:36:11Z"
|
||||
},
|
||||
"tags" : [ {
|
||||
"name" : "Dispute Attachments"
|
||||
@@ -425,7 +425,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -484,17 +484,43 @@
|
||||
"required" : [ "descriptionOfIssue", "lastExpectedDate", "whatWasNotDelivered" ],
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : "boolean",
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
@@ -532,6 +558,7 @@
|
||||
"$ref" : "#/components/schemas/Amount"
|
||||
},
|
||||
"duplicateInfo" : {
|
||||
"description" : "Additional information for raising a dispute of `type` **duplicate**. Required for disputes of `type` **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DuplicateInfo"
|
||||
},
|
||||
"fraudInfo" : {
|
||||
@@ -556,7 +583,7 @@
|
||||
"description" : "The unique reference of the transaction for which you are raising the dispute."
|
||||
},
|
||||
"type" : {
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**.",
|
||||
"description" : "The type of the dispute.\n\nPossible values: **notDelivered**, **fraud**, **duplicate**.",
|
||||
"$ref" : "#/components/schemas/DisputeType"
|
||||
}
|
||||
}
|
||||
@@ -645,17 +672,43 @@
|
||||
"PatchableNotDeliveredInfo" : {
|
||||
"type" : "object",
|
||||
"properties" : {
|
||||
"agreedDeliveryLocation" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The delivery location specified by the cardholder. Required if `deliveredToWrongLocation` is **true**."
|
||||
},
|
||||
"dateOfCancellation" : {
|
||||
"type" : [ "string", "null" ],
|
||||
"description" : "The date the undelivered goods or services were cancelled in YYYY-MM-DD format.",
|
||||
"format" : "date"
|
||||
},
|
||||
"deliveredToWrongLocation" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates goods were delivered to the wrong location.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"descriptionOfIssue" : {
|
||||
"maxLength" : 2500,
|
||||
"minLength" : 0,
|
||||
"type" : "string",
|
||||
"description" : "Your description of the issue for raising a dispute of `type` **notDelivered**."
|
||||
},
|
||||
"didCardholderReturn" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the cardholder returned the goods to the merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isDeliveryLate" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the goods or services were delivered late.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isMerchantBankrupt" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction was processed by a bankrupt merchant.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"isNonFiatOrNft" : {
|
||||
"type" : [ "boolean", "null" ],
|
||||
"description" : "Indicates if the transaction is non-fiat or non-fungible token (NFT) related.\n\nPossible values: **true**, **false**."
|
||||
},
|
||||
"lastExpectedDate" : {
|
||||
"type" : "string",
|
||||
"description" : "The date the undelivered goods or services were expected to be delivered in YYYY-MM-DD format.",
|
||||
|
||||
@@ -133,6 +133,7 @@ components:
|
||||
enum:
|
||||
- fraud
|
||||
- notDelivered
|
||||
- duplicate
|
||||
type: string
|
||||
type: object
|
||||
DisputeNotificationRequest:
|
||||
|
||||
@@ -30,7 +30,7 @@ info:
|
||||
name: Adyen Developer Experience team
|
||||
url: https://github.com/Adyen/adyen-openapi
|
||||
version: '1'
|
||||
x-timestamp: '2025-03-21T17:33:57Z'
|
||||
x-timestamp: '2025-04-03T18:36:10Z'
|
||||
tags:
|
||||
- name: Dispute Attachments
|
||||
- name: Raise Disputes
|
||||
@@ -397,7 +397,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
DisputeStatus:
|
||||
type: string
|
||||
@@ -465,17 +465,54 @@ components:
|
||||
- whatWasNotDelivered
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type: boolean
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type: boolean
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type: boolean
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
@@ -519,6 +556,8 @@ components:
|
||||
an amount, the entire transaction amount will be disputed.
|
||||
$ref: '#/components/schemas/Amount'
|
||||
duplicateInfo:
|
||||
description: Additional information for raising a dispute of `type` **duplicate**.
|
||||
Required for disputes of `type` **duplicate**.
|
||||
$ref: '#/components/schemas/DuplicateInfo'
|
||||
fraudInfo:
|
||||
description: Additional information for raising a dispute of `type` **fraud**.
|
||||
@@ -550,7 +589,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
PatchableDisputeRequest:
|
||||
type: object
|
||||
@@ -633,6 +672,14 @@ components:
|
||||
PatchableNotDeliveredInfo:
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type:
|
||||
- string
|
||||
- 'null'
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type:
|
||||
- string
|
||||
@@ -640,12 +687,53 @@ components:
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
|
||||
@@ -30,7 +30,7 @@ info:
|
||||
name: Adyen Developer Experience team
|
||||
url: https://github.com/Adyen/adyen-openapi
|
||||
version: '2'
|
||||
x-timestamp: '2025-03-21T17:33:58Z'
|
||||
x-timestamp: '2025-04-03T18:36:11Z'
|
||||
tags:
|
||||
- name: Dispute Attachments
|
||||
- name: Raise Disputes
|
||||
@@ -397,7 +397,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
DisputeStatus:
|
||||
type: string
|
||||
@@ -465,17 +465,54 @@ components:
|
||||
- whatWasNotDelivered
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type: boolean
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type: boolean
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type: boolean
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
@@ -519,6 +556,8 @@ components:
|
||||
an amount, the entire transaction amount will be disputed.
|
||||
$ref: '#/components/schemas/Amount'
|
||||
duplicateInfo:
|
||||
description: Additional information for raising a dispute of `type` **duplicate**.
|
||||
Required for disputes of `type` **duplicate**.
|
||||
$ref: '#/components/schemas/DuplicateInfo'
|
||||
fraudInfo:
|
||||
description: Additional information for raising a dispute of `type` **fraud**.
|
||||
@@ -550,7 +589,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
PatchableDisputeRequest:
|
||||
type: object
|
||||
@@ -633,6 +672,14 @@ components:
|
||||
PatchableNotDeliveredInfo:
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type:
|
||||
- string
|
||||
- 'null'
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type:
|
||||
- string
|
||||
@@ -640,12 +687,53 @@ components:
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
|
||||
@@ -30,7 +30,7 @@ info:
|
||||
name: Adyen Developer Experience team
|
||||
url: https://github.com/Adyen/adyen-openapi
|
||||
version: '3'
|
||||
x-timestamp: '2025-03-21T17:33:58Z'
|
||||
x-timestamp: '2025-04-03T18:36:11Z'
|
||||
tags:
|
||||
- name: Dispute Attachments
|
||||
- name: Raise Disputes
|
||||
@@ -397,7 +397,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
DisputeStatus:
|
||||
type: string
|
||||
@@ -465,17 +465,54 @@ components:
|
||||
- whatWasNotDelivered
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type: boolean
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type: boolean
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type: boolean
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
@@ -519,6 +556,8 @@ components:
|
||||
an amount, the entire transaction amount will be disputed.
|
||||
$ref: '#/components/schemas/Amount'
|
||||
duplicateInfo:
|
||||
description: Additional information for raising a dispute of `type` **duplicate**.
|
||||
Required for disputes of `type` **duplicate**.
|
||||
$ref: '#/components/schemas/DuplicateInfo'
|
||||
fraudInfo:
|
||||
description: Additional information for raising a dispute of `type` **fraud**.
|
||||
@@ -550,7 +589,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
PatchableDisputeRequest:
|
||||
type: object
|
||||
@@ -633,6 +672,14 @@ components:
|
||||
PatchableNotDeliveredInfo:
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type:
|
||||
- string
|
||||
- 'null'
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type:
|
||||
- string
|
||||
@@ -640,12 +687,53 @@ components:
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
|
||||
@@ -30,7 +30,7 @@ info:
|
||||
name: Adyen Developer Experience team
|
||||
url: https://github.com/Adyen/adyen-openapi
|
||||
version: '4'
|
||||
x-timestamp: '2025-03-21T17:33:58Z'
|
||||
x-timestamp: '2025-04-03T18:36:11Z'
|
||||
tags:
|
||||
- name: Dispute Attachments
|
||||
- name: Raise Disputes
|
||||
@@ -397,7 +397,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
DisputeStatus:
|
||||
type: string
|
||||
@@ -465,17 +465,54 @@ components:
|
||||
- whatWasNotDelivered
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type: boolean
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type: boolean
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type: boolean
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type: boolean
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
@@ -519,6 +556,8 @@ components:
|
||||
an amount, the entire transaction amount will be disputed.
|
||||
$ref: '#/components/schemas/Amount'
|
||||
duplicateInfo:
|
||||
description: Additional information for raising a dispute of `type` **duplicate**.
|
||||
Required for disputes of `type` **duplicate**.
|
||||
$ref: '#/components/schemas/DuplicateInfo'
|
||||
fraudInfo:
|
||||
description: Additional information for raising a dispute of `type` **fraud**.
|
||||
@@ -550,7 +589,7 @@ components:
|
||||
description: 'The type of the dispute.
|
||||
|
||||
|
||||
Possible values: **notDelivered**, **fraud**.'
|
||||
Possible values: **notDelivered**, **fraud**, **duplicate**.'
|
||||
$ref: '#/components/schemas/DisputeType'
|
||||
PatchableDisputeRequest:
|
||||
type: object
|
||||
@@ -633,6 +672,14 @@ components:
|
||||
PatchableNotDeliveredInfo:
|
||||
type: object
|
||||
properties:
|
||||
agreedDeliveryLocation:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type:
|
||||
- string
|
||||
- 'null'
|
||||
description: The delivery location specified by the cardholder. Required
|
||||
if `deliveredToWrongLocation` is **true**.
|
||||
dateOfCancellation:
|
||||
type:
|
||||
- string
|
||||
@@ -640,12 +687,53 @@ components:
|
||||
description: The date the undelivered goods or services were cancelled in
|
||||
YYYY-MM-DD format.
|
||||
format: date
|
||||
deliveredToWrongLocation:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates goods were delivered to the wrong location.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
descriptionOfIssue:
|
||||
maxLength: 2500
|
||||
minLength: 0
|
||||
type: string
|
||||
description: Your description of the issue for raising a dispute of `type`
|
||||
**notDelivered**.
|
||||
didCardholderReturn:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the cardholder returned the goods to the merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isDeliveryLate:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the goods or services were delivered late.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isMerchantBankrupt:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction was processed by a bankrupt merchant.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
isNonFiatOrNft:
|
||||
type:
|
||||
- boolean
|
||||
- 'null'
|
||||
description: 'Indicates if the transaction is non-fiat or non-fungible token
|
||||
(NFT) related.
|
||||
|
||||
|
||||
Possible values: **true**, **false**.'
|
||||
lastExpectedDate:
|
||||
type: string
|
||||
description: The date the undelivered goods or services were expected to
|
||||
|
||||
Reference in New Issue
Block a user