openapi: 3.1.0 info: version: '6' x-publicVersion: true title: Adyen Account acceptDispute createTestCardRanges API description: "This API is used for the classic integration. If you are just starting your implementation, refer to our [new integration guide](https://docs.adyen.com/marketplaces-and-platforms) instead.\n\nThe Account API provides endpoints for managing account-related entities on your platform. These related entities include account holders, accounts, bank accounts, shareholders, and verification-related documents. The management operations include actions such as creation, retrieval, updating, and deletion of them.\n\nFor more information, refer to our [documentation](https://docs.adyen.com/marketplaces-and-platforms/classic).\n## Authentication\nYour Adyen contact will provide your API credential and an API key. To connect to the API, add an `X-API-Key` header with the API key as the value, for example:\n\n ```\ncurl\n-H \"Content-Type: application/json\" \\\n-H \"X-API-Key: YOUR_API_KEY\" \\\n...\n```\n\nAlternatively, you can use the username and password to connect to the API using basic authentication. For example:\n\n```\ncurl\n-U \"ws@MarketPlace.YOUR_PLATFORM_ACCOUNT\":\"YOUR_WS_PASSWORD\" \\\n-H \"Content-Type: application/json\" \\\n...\n```\nWhen going live, you need to generate new web service user credentials to access the [live endpoints](https://docs.adyen.com/development-resources/live-endpoints).\n\n## Versioning\nThe Account API supports [versioning](https://docs.adyen.com/development-resources/versioning) using a version suffix in the endpoint URL. This suffix has the following format: \"vXX\", where XX is the version number.\n\nFor example:\n```\nhttps://cal-test.adyen.com/cal/services/Account/v6/createAccountHolder\n```" x-timestamp: '2023-05-30T15:27:20Z' termsOfService: https://www.adyen.com/legal/terms-and-conditions contact: name: Adyen Developer Experience team url: https://github.com/Adyen/adyen-openapi servers: - url: https://cal-test.adyen.com/cal/services/Account/v6 tags: - name: createTestCardRanges paths: /createTestCardRanges: post: tags: - createTestCardRanges summary: Adyen Creates One or More Test Card Ranges. description: Creates one or more test card ranges. operationId: post-createTestCardRanges x-groupName: General x-sortIndex: 0 security: - BasicAuth: [] - ApiKeyAuth: [] requestBody: content: application/json: schema: $ref: '#/components/schemas/CreateTestCardRangesRequest' responses: '200': content: application/json: schema: $ref: '#/components/schemas/CreateTestCardRangesResult' examples: post-createTestCardRanges200Example: summary: Default post-createTestCardRanges 200 response x-microcks-default: true value: rangeCreationResults: - example_value description: OK - the request has succeeded. '400': content: application/json: schema: $ref: '#/components/schemas/ServiceError' examples: post-createTestCardRanges400Example: summary: Default post-createTestCardRanges 400 response x-microcks-default: true value: errorCode: CODE123 errorType: standard message: example_value pspReference: REF-001 status: 500 description: Bad Request - a problem reading or understanding the request. '401': content: application/json: schema: $ref: '#/components/schemas/ServiceError' examples: post-createTestCardRanges401Example: summary: Default post-createTestCardRanges 401 response x-microcks-default: true value: errorCode: CODE123 errorType: standard message: example_value pspReference: REF-001 status: 500 description: Unauthorized - authentication required. '403': content: application/json: schema: $ref: '#/components/schemas/ServiceError' examples: post-createTestCardRanges403Example: summary: Default post-createTestCardRanges 403 response x-microcks-default: true value: errorCode: CODE123 errorType: standard message: example_value pspReference: REF-001 status: 500 description: Forbidden - insufficient permissions to process the request. '422': content: application/json: schema: $ref: '#/components/schemas/ServiceError' examples: post-createTestCardRanges422Example: summary: Default post-createTestCardRanges 422 response x-microcks-default: true value: errorCode: CODE123 errorType: standard message: example_value pspReference: REF-001 status: 500 description: Unprocessable Entity - a request validation error. '500': content: application/json: schema: $ref: '#/components/schemas/ServiceError' examples: post-createTestCardRanges500Example: summary: Default post-createTestCardRanges 500 response x-microcks-default: true value: errorCode: CODE123 errorType: standard message: example_value pspReference: REF-001 status: 500 description: Internal Server Error - the server could not process the request. x-microcks-operation: delay: 0 dispatcher: FALLBACK components: schemas: TestCardRange: properties: address: description: Contains the billing address of the card holder. The address details need to be AVS-compliant, which means that you need to provide at least street address. $ref: '#/components/schemas/AvsAddress' cardHolderName: description: The name of the card holder, as it appears on the card, for the test card range. type: string cvc: description: 'The test card range security code. Example: 123' type: string expiryMonth: description: 'Expiry month for the test card range. Allowed values: * JANUARY * FEBRUARY * MARCH * APRIL * MAY * JUNE * JULY * AUGUST * SEPTEMBER * OCTOBER * NOVEMBER * DECEMBER' enum: - APRIL - AUGUST - DECEMBER - FEBRUARY - JANUARY - JULY - JUNE - MARCH - MAY - NOVEMBER - OCTOBER - SEPTEMBER type: string expiryYear: description: 'Expiry year for the test card range. Example: 2020' format: int32 type: integer rangeEnd: description: 'The last test card number in the test card range (inclusive): * Min 6, max 19 digits * BIN compliant Example: 5432 1234 1234 4321' type: string rangeStart: description: 'The first test card number in the test card range (inclusive): * Min 6, max 19 digits * BIN compliant Example: 5432 1234 1234 1234' type: string threeDDirectoryServerResponse: description: '3D Secure server response. It notifies whether the specified card holder is enrolled in a 3D Secure service. Possible values: * Y (Authentication available) * N (Card holder not enrolled/not participating) * U (Unable to authenticate)' enum: - N - U - Y type: string threeDPassword: description: The password used for 3D Secure authentication. type: string threeDUsername: description: The username used for 3D Secure authentication. type: string required: - rangeStart - rangeEnd - expiryMonth - expiryYear - cardHolderName CreateTestCardRangesRequest: properties: accountCode: description: The code of the account, for which the test card ranges should be created. type: string accountTypeCode: description: 'The type of the account, for which the test card ranges should be created. Permitted values: * Company * MerchantAccount > These values are case-sensitive.' type: string testCardRanges: description: A list of test card ranges to create. items: $ref: '#/components/schemas/TestCardRange' type: array required: - accountTypeCode - accountCode - testCardRanges AvsAddress: properties: streetAddress: description: 'The street and house number of the address. Example: 1 Infinite Loop, Cupertino.' type: string zip: description: 'The zip or post code of the address. Example: CA 95014' type: string required: - streetAddress TestCardRangeCreationResult: properties: cardNumberRangeEnd: description: 'The last test card number in the generated test card range. Example: 5432 1234 1234 4321' type: string cardNumberRangeStart: description: 'The first test card number in the generated test card range. Example: 5432 1234 1234 1234' type: string creationResultCode: description: 'Notification message. It informs about the outcome of the operation. Possible values: * CREATED * ALREADY_EXISTS * ERROR' enum: - ALREADY_EXISTS - CREATED - ERROR type: string message: description: An optional information message about the result. type: string required: - cardNumberRangeStart - cardNumberRangeEnd - creationResultCode ServiceError: properties: errorCode: description: The error code mapped to the error message. type: string errorType: description: The category of the error. type: string message: description: A short explanation of the issue. type: string pspReference: description: The PSP reference of the payment. type: string status: description: The HTTP response status. format: int32 type: integer CreateTestCardRangesResult: properties: rangeCreationResults: description: The results of the test card creation. items: $ref: '#/components/schemas/TestCardRangeCreationResult' type: array required: - rangeCreationResults securitySchemes: ApiKeyAuth: in: header name: X-API-Key type: apiKey BasicAuth: scheme: basic type: http x-groups: - Account holders - Accounts - Verification