Adyen · JSON Structure

Recurring Create Permit Request Structure

CreatePermitRequest schema from Adyen API

Type: object Properties: 4 Required: 4
PaymentsFinancial ServicesFintech

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

Properties

merchantAccount permits recurringDetailReference shopperReference

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/recurring-create-permit-request-structure.json",
  "description": "CreatePermitRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "merchantAccount": {
      "description": "The merchant account identifier, with which you want to process the transaction.",
      "type": "string"
    },
    "permits": {
      "description": "The permits to create for this recurring contract.",
      "items": {
        "$ref": "#/components/schemas/Permit"
      },
      "type": "array"
    },
    "recurringDetailReference": {
      "description": "The recurring contract the new permits will use.",
      "type": "string"
    },
    "shopperReference": {
      "description": "The shopper's reference to uniquely identify this shopper (e.g. user ID or account ID).",
      "type": "string"
    }
  },
  "required": [
    "merchantAccount",
    "shopperReference",
    "recurringDetailReference",
    "permits"
  ],
  "name": "CreatePermitRequest"
}