Properties
| Name | Type | Description |
|---|---|---|
| merchantAccount | string | The merchant account identifier, with which you want to process the transaction. |
| permits | array | The permits to create for this recurring contract. |
| recurringDetailReference | string | The recurring contract the new permits will use. |
| shopperReference | string | The shopper's reference to uniquely identify this shopper (e.g. user ID or account ID). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreatePermitRequest",
"title": "CreatePermitRequest",
"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"
],
"type": "object"
}