Adyen · JSON Structure

Test Cards Test Card Range Creation Result Structure

TestCardRangeCreationResult schema from Adyen API

Type: object Properties: 4 Required: 3
PaymentsFinancial ServicesFintech

TestCardRangeCreationResult is a JSON Structure definition published by Adyen, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

cardNumberRangeEnd cardNumberRangeStart creationResultCode message

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/test-cards-test-card-range-creation-result-structure.json",
  "description": "TestCardRangeCreationResult schema from Adyen API",
  "properties": {
    "cardNumberRangeEnd": {
      "description": "The last test card number in the generated test card range.\n\nExample: 5432 1234 1234 4321",
      "type": "string"
    },
    "cardNumberRangeStart": {
      "description": "The first test card number in the generated test card range.\n\nExample: 5432 1234 1234 1234",
      "type": "string"
    },
    "creationResultCode": {
      "description": "Notification message. It informs about the outcome of the operation. Possible values:\n* CREATED\n* ALREADY_EXISTS\n* ERROR",
      "enum": [
        "ALREADY_EXISTS",
        "CREATED",
        "ERROR"
      ],
      "type": "string"
    },
    "message": {
      "description": "An optional information message about the result.",
      "type": "string"
    }
  },
  "required": [
    "cardNumberRangeStart",
    "cardNumberRangeEnd",
    "creationResultCode"
  ],
  "type": "object",
  "name": "TestCardRangeCreationResult"
}