# Repeated Payment

#### Sending a repeated payment

Any payment request following the initial one has to have the parameter `recurringType` with the value `REPEATED`. This flag not only indicates that the request is part of a series of payments on this account, but also tells the payment system that no user is present and therefore parameters like `card.cvv` or the 3D authentication shouldn't be present. This fact in combination with the stored payment data of the registration greatly reduces the number of parameters of such a request:

```
https://test.oppwa.com/v1/registrations/{registrationId}/payments⠀⠀
```

```
curl https://test.oppwa.com/v1/registrations/{registrationId}/payments \
 -d "entityId=8a8294184e736012014e78a17a5615ac" \
 -d "amount=92.00" \
 -d "currency=EUR" \
 -d "paymentType=PA" \
 -d "recurringType=REPEATED" \
 -H "Authorization: Bearer OGE4Mjk0MTg0ZTczNjAxMjAxNGU3OGExN2E2YTE1YjB8ZjJGRUtacXRCUA=="
```

{% file src="<https://1991843971-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MGcOwWYO42hhJYXrYx1%2F-MGjyrDnKB2eDoxxLD-J%2F-MGjysLYYMK-JX0F_dHW%2FRecurring%20Repeated.rar?alt=media&token=3571c855-8383-4512-adf4-f2706900fa8c>" %}
Recurring Repeated Json Request
{% endfile %}
