v2

latestOpenAPI 3.0.12026-07-2693281951.6 KB
Application Management

Create application VRP configuration by Application Id

Create application vrp configuration

post/applications/{applicationId}/vrp

Path parameters

applicationIdstring uuid required

The id of the application that vrp configuration being created for

Request body

maximumCumulativeNumberOfPaymentsinteger

Maximum cumulative number of payments

recurringPaymentCategorystring

Payment Category with allowed values: ONGOING, SUBSCRIPTION

Example request

{
  "maximumIndividualAmount": {
    "amount": 10,
    "currency": "GBP"
  },
  "maximumCumulativeAmount": {
    "amount": 10,
    "currency": "GBP"
  },
  "periodicLimits": [
    {
      "maximumAmount": {
        "amount": 10,
        "currency": "GBP"
      }
    }
  ],
  "recurringPaymentCategory": "ONGOING"
}

Response

Application vrp configuration was successfully created