# Payment-Sequence

This field needs to be sent in order to mark the beginning of a sequence of payments (recurring/subscriptions, installments, and so). Specific configurations can be set in the inside properties (`recurring`).

**type**stringrequired

**Possible values:** \[`recurring`]

**Example:<!-- -->&#x20;**`recurring`

**recurring** <!-- -->object

Specific configurations for recurring payments. Will only be used when `sequence`.`type` is `recurring`.

**expiry**string

Date after which no further recurring payments will be performed. Must be formatted as `YYYYMMDD`.

**Default value:<!-- -->&#x20;**`*(The payment method or card expiration)*`

**Example:<!-- -->&#x20;**`20210630`

**frequency**int32

The minimum number of **days** between the different recurring payments.

**Default value:<!-- -->&#x20;**`25`

**Example:<!-- -->&#x20;**`30`

Payment-Sequence

```
{

  "type": "recurring",

  "recurring": {

    "expiry": "20210630",

    "frequency": 30

  }

}
```
