Payee Invitation

Initiate Payee Creation

Initiate the process of creating 1 to 2000 payees in a batch

Use the batchId in the response to query for status.

In addition to standard semantic validations, a 400 will also result if:

  • there is a duplicate remote id within the batch
  • there is a duplicate email within the batch, i.e. if there is a conflict between the data provided for one payee within the batch and that provided for another payee within the same batch).

The validation at this stage is intra-batch only.

Validation against payees who have already been invited occurs subsequently during processing of the batch.

post/v4/payees

Request body

payorIdstring required

Example request

{
  "payees": [
    {
      "address": {
        "country": "US",
        "countyOrProvince": "FL",
        "line4": "line4",
        "city": "Key West",
        "line3": "line3",
        "line2": "line2",
        "line1": "500 Duval St",
        "zipOrPostcode": "33945"
      },
      "individual": {
        "name": {
          "firstName": "Bob",
          "lastName": "Smith",
          "otherNames": "H",
          "title": "Mr"
        },
        "nationalIdentification": "SA211123K",
        "dateOfBirth": "1970-05-20T00:00:00.000+0000"
      },
      "challenge": {
        "description": "challenge description",
        "value": "11984567"
      },
      "language": "en-US",
      "company": {
        "taxId": "123123123",
        "name": "ABC Group Plc",
        "operatingName": "ABC Co"
      },
      "email": "bob@example.com",
      "remoteId": "Remote ID",
      "paymentChannel": {
        "paymentChannelName": "My Payment Channel",
        "routingNumber": "XXXXX6789",
        "accountName": "My account",
        "countryCode": "US",
        "iban": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234",
        "currency": "USD",
        "accountNumber": "XXXXXX5678"
      }
    },
    {
      "address": {
        "country": "US",
        "countyOrProvince": "FL",
        "line4": "line4",
        "city": "Key West",
        "line3": "line3",
        "line2": "line2",
        "line1": "500 Duval St",
        "zipOrPostcode": "33945"
      },
      "individual": {
        "name": {
          "firstName": "Bob",
          "lastName": "Smith",
          "otherNames": "H",
          "title": "Mr"
        },
        "nationalIdentification": "SA211123K",
        "dateOfBirth": "1970-05-20T00:00:00.000+0000"
      },
      "challenge": {
        "description": "challenge description",
        "value": "11984567"
      },
      "language": "en-US",
      "company": {
        "taxId": "123123123",
        "name": "ABC Group Plc",
        "operatingName": "ABC Co"
      },
      "email": "bob@example.com",
      "remoteId": "Remote ID",
      "paymentChannel": {
        "paymentChannelName": "My Payment Channel",
        "routingNumber": "XXXXX6789",
        "accountName": "My account",
        "countryCode": "US",
        "iban": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX1234",
        "currency": "USD",
        "accountNumber": "XXXXXX5678"
      }
    }
  ],
  "payorId": "9ac75325-5dcd-42d5-b992-175d7e0a035e"
}

Response

HTTP Created. Body created only on CSV requests

batchIdstring uuid

Example response

{
  "batchId": "cb6ff8c6-85e9-45a6-b7d9-d05305db67f3",
  "rejectedCsvRows": [
    {
      "rejectedContent": "unable,to,process,csv,line",
      "lineNumber": 3,
      "message": "rejected message 1"
    },
    {
      "rejectedContent": "unable,to,process,csv,line",
      "lineNumber": 3,
      "message": "rejected message 1"
    }
  ]
}

Changes

Changed in 6 of the 50 revisions of this API.1042231

  • 05c3f09fc50a34See the full diff
    • the file/items/addressZipOrPostcode request property's maxLength was decreased to 20 (media type: multipart/form-data)

      request-property-max-length-decreased

    • the payees/items/address/zipOrPostcode request property's maxLength was decreased to 20 (media type: application/json)

      request-property-max-length-decreased

    • the file/items/addressZipOrPostcode request property's minLength was increased from 1 to 2 (media type: multipart/form-data)

      request-property-min-length-increased

    • the request property file/items/addressZipOrPostcode became optional (media type: multipart/form-data)

      request-property-became-optional

    • the file/items/individualNationalIdentification request property's minLength was decreased from 6 to 4 (media type: multipart/form-data)

      request-property-min-length-decreased

    • the payees/items/company/taxId request property's minLength was decreased from 6 to 4 (media type: application/json)

      request-property-min-length-decreased

    • the payees/items/individual/nationalIdentification request property's minLength was decreased from 6 to 4 (media type: application/json)

      request-property-min-length-decreased

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 1e7a1734a45c71See the full diff
    • removed the enum value ACCEPTED of the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DECLINED of the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EUR of the request property file/items/paymentChannelCurrency (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GBP of the request property file/items/paymentChannelCurrency (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PENDING of the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value USD of the request property file/items/paymentChannelCurrency (media type: multipart/form-data)

      request-property-enum-value-removed

    • the file/items/paymentChannelCurrency request property's minLength was increased from 0 to 3 (media type: multipart/form-data)

      request-property-min-length-increased

    • the file/items/paymentChannelCurrency request property's maxLength was set to 3 (media type: multipart/form-data)

      request-property-max-length-set

    This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • da77064fe23310051See the full diff
    • removed the enum value AD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AQ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AQ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AQ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AQ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AX of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AX of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AX of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AX of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value AZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BB of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BB of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BB of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BB of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BJ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BJ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BJ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BJ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BQ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BQ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BQ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BQ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value BZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value BZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CX of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CX of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CX of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CX of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value CZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value CZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DJ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DJ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DJ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DJ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value DZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value DZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ER of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ER of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ER of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ER of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ES of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ES of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ES of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ES of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ET of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ET of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ET of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ET of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EUR of the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FJ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FJ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FJ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FJ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GB of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GB of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GB of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GB of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GBP of the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GP of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GP of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GP of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GP of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GQ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GQ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GQ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GQ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value GY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value GY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ID of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ID of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ID of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ID of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IQ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IQ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IQ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IQ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value IT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value IT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JP of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JP of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JP of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JP of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KP of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KP of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KP of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KP of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value KZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value KZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LB of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LB of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LB of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LB of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value LY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value LY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ME of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ME of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ME of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ME of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ML of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ML of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ML of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ML of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MP of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MP of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MP of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MP of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MQ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MQ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MQ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MQ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MX of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MX of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MX of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MX of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value MZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value MZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NP of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NP of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NP of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NP of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value NZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value NZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value OM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value OM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value OM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value OM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value QA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value QA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value QA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value QA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SB of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SB of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SB of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SB of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SJ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SJ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SJ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SJ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ST of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ST of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ST of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ST of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SX of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SX of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SX of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SX of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value SZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value SZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TD of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TD of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TD of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TD of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TH of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TH of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TH of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TH of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TJ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TJ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TJ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TJ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TK of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TK of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TK of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TK of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TL of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TL of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TL of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TL of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TO of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TO of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TO of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TO of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TR of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TR of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TR of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TR of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TV of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TV of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TV of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TV of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value TZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value TZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value US of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value US of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value US of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value US of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value USD of the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UY of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UY of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UY of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UY of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UZ of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UZ of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UZ of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UZ of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VC of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VC of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VC of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VC of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VG of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VG of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VG of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VG of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VI of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VI of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VI of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VI of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VN of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VN of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VN of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VN of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VU of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VU of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value VU of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value VU of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value WF of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value WF of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value WF of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value WF of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value WS of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value WS of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value WS of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value WS of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value YE of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value YE of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value YE of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value YE of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value YT of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value YT of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value YT of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value YT of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZA of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZA of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZA of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZA of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZM of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZM of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZM of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZM of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZW of the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZW of the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZW of the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZW of the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-removed

    • the payees/items/paymentChannel/currency request property's minLength was increased from 0 to 3 (media type: application/json)

      request-property-min-length-increased

    • added the pattern ^[A-Z]{2}$ to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-pattern-added

    • added the pattern ^[A-Z]{2}$ to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-pattern-added

    • added the pattern ^[A-Z]{2}$ to the request property payees/items/address/country (media type: application/json)

      request-property-pattern-added

    • added the pattern ^[A-Z]{2}$ to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-pattern-added

    • added the pattern ^[A-Z]{3}$ to the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-pattern-added

    • the payees/items/paymentChannel/currency request property's maxLength was set to 3 (media type: application/json)

      request-property-max-length-set

    This revision also has 76 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • dd71433847a62626See the full diff
    • removed the enum value AR of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value AR of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value EN of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value EN of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ES of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ES of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value FR of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value FR of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HE of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HE of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value HI of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value HI of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value JA of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value JA of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value PT of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value PT of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value RU of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value RU of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value UR of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value UR of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • removed the enum value ZH of the request property file/items/payeeLanguage (media type: multipart/form-data)

      request-property-enum-value-removed

    • removed the enum value ZH of the request property payees/items/language (media type: application/json)

      request-property-enum-value-removed

    • the errors/items/ response's property type/format changed from / to object/ for status 400

      response-property-type-changed

    • the errors/items/ response's property type/format changed from / to object/ for status 401

      response-property-type-changed

    • the errors/items/ response's property type/format changed from / to object/ for status 403

      response-property-type-changed

    • the errors/items/ response's property type/format changed from / to object/ for status 404

      response-property-type-changed

    • added the new optional request property payees/items/payorRefs/items/payableIssues (media type: application/json)

      new-optional-request-property

    • added the new optional request property payees/items/payorRefs/items/payableStatus (media type: application/json)

      new-optional-request-property

    • added the optional property errors/items/errorCode to the response with the 400 status

      response-optional-property-added

    • added the optional property errors/items/errorCode to the response with the 401 status

      response-optional-property-added

    • added the optional property errors/items/errorCode to the response with the 403 status

      response-optional-property-added

    • added the optional property errors/items/errorCode to the response with the 404 status

      response-optional-property-added

    • added the optional property errors/items/errorData to the response with the 400 status

      response-optional-property-added

    • added the optional property errors/items/errorData to the response with the 401 status

      response-optional-property-added

    • added the optional property errors/items/errorData to the response with the 403 status

      response-optional-property-added

    • added the optional property errors/items/errorData to the response with the 404 status

      response-optional-property-added

    • added the optional property errors/items/localisationDetails to the response with the 400 status

      response-optional-property-added

    • added the optional property errors/items/localisationDetails to the response with the 401 status

      response-optional-property-added

    • added the optional property errors/items/localisationDetails to the response with the 403 status

      response-optional-property-added

    • added the optional property errors/items/localisationDetails to the response with the 404 status

      response-optional-property-added

    • added the optional property httpStatusCode to the response with the 400 status

      response-optional-property-added

    • added the optional property httpStatusCode to the response with the 401 status

      response-optional-property-added

    • added the optional property httpStatusCode to the response with the 403 status

      response-optional-property-added

    • added the optional property httpStatusCode to the response with the 404 status

      response-optional-property-added

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/locationType deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    • response property errors/items/reasonCode deprecated

      response-property-deprecated

    This revision also has 9 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • endpoint added

      endpoint-added

    • api path removed without deprecation

      api-path-removed-without-deprecation

    This revision also has 257 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog