Adyen · JSON Structure

Stored Value Stored Value Issue Response Structure

StoredValueIssueResponse schema from Adyen API

Type: object Properties: 7
PaymentsFinancial ServicesFintech

StoredValueIssueResponse is a JSON Structure definition published by Adyen, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

authCode currentBalance paymentMethod pspReference refusalReason resultCode thirdPartyRefusalReason

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/stored-value-stored-value-issue-response-structure.json",
  "description": "StoredValueIssueResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "authCode": {
      "description": "Authorisation code:\n* When the payment is authorised, this field holds the authorisation code for the payment.\n* When the payment is not authorised, this field is empty.",
      "type": "string"
    },
    "currentBalance": {
      "description": "The balance currently on the payment method.",
      "$ref": "#/components/schemas/Amount"
    },
    "paymentMethod": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "The collection that contains the type of the payment method and its specific information if available",
      "type": "object"
    },
    "pspReference": {
      "description": "Adyen's 16-character string reference associated with the transaction/request. This value is globally unique; quote it when communicating with us about this request.",
      "type": "string"
    },
    "refusalReason": {
      "description": "If the transaction is refused or an error occurs, this field holds Adyen's mapped reason for the refusal or a description of the error.\n\nWhen a transaction fails, the authorisation response includes `resultCode` and `refusalReason` values.",
      "type": "string"
    },
    "resultCode": {
      "description": "The result of the payment. Possible values:\n\n* **Success** \u2013 The operation has been completed successfully. \n* **Refused** \u2013 The operation was refused. The reason is given in the `refusalReason` field. \n* **Error** \u2013 There was an error when the operation was processed. The reason is given in the `refusalReason` field. \n* **NotEnoughBalance** \u2013 The amount on the payment method is lower than the amount given in the request. Only applicable to balance checks. \n",
      "enum": [
        "Success",
        "Refused",
        "Error",
        "NotEnoughBalance"
      ],
      "type": "string"
    },
    "thirdPartyRefusalReason": {
      "description": "Raw refusal reason received from the third party, where available",
      "type": "string"
    }
  },
  "name": "StoredValueIssueResponse"
}