Payee Invitation

Initiate Payee Creation

Use v4 instead

Initiate the process of creating 1 to 2000 payees in a batch Use the response location header to query for status (201 - Created, 400 - invalid request body. In addition to standard semantic validations, a 400 will also result if there is a duplicate remote id within the batch / if 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/v3/payees

Request body

payorIdstring required

Example request

{
  "payees": [
    {
      "payorRefs": [
        {
          "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
          "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
          "payableStatus": true,
          "invitationStatus": "invitationStatus",
          "payableIssues": [
            {
              "code": "3",
              "message": "payee-disabled"
            },
            {
              "code": "3",
              "message": "payee-disabled"
            }
          ],
          "remoteId": "uniqueIdForRemoteEntity",
          "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
        },
        {
          "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
          "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
          "payableStatus": true,
          "invitationStatus": "invitationStatus",
          "payableIssues": [
            {
              "code": "3",
              "message": "payee-disabled"
            },
            {
              "code": "3",
              "message": "payee-disabled"
            }
          ],
          "remoteId": "uniqueIdForRemoteEntity",
          "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
        }
      ],
      "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": "challenge test"
      },
      "language": "en-US",
      "company": {
        "taxId": "123123123",
        "name": "ABC Group Plc",
        "operatingName": "ABC Co"
      },
      "payeeId": "2aa5d7e0-2ecb-403f-8494-1865ed0454e9",
      "type": "type",
      "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"
      }
    },
    {
      "payorRefs": [
        {
          "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
          "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
          "payableStatus": true,
          "invitationStatus": "invitationStatus",
          "payableIssues": [
            {
              "code": "3",
              "message": "payee-disabled"
            },
            {
              "code": "3",
              "message": "payee-disabled"
            }
          ],
          "remoteId": "uniqueIdForRemoteEntity",
          "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
        },
        {
          "payorId": "ba08877f-9d96-41e4-9c26-44a872d856ae",
          "invitationStatusTimestamp": "2019-01-20T09:00:00Z",
          "payableStatus": true,
          "invitationStatus": "invitationStatus",
          "payableIssues": [
            {
              "code": "3",
              "message": "payee-disabled"
            },
            {
              "code": "3",
              "message": "payee-disabled"
            }
          ],
          "remoteId": "uniqueIdForRemoteEntity",
          "paymentChannelId": "70faaff7-2c32-4b44-b27f-f0b6c484e6f3"
        }
      ],
      "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": "challenge test"
      },
      "language": "en-US",
      "company": {
        "taxId": "123123123",
        "name": "ABC Group Plc",
        "operatingName": "ABC Co"
      },
      "payeeId": "2aa5d7e0-2ecb-403f-8494-1865ed0454e9",
      "type": "type",
      "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 11 of the 50 revisions of this API.207171063

  • 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

  • 1e7a1734a45c2581See 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 AD 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/address/country (media type: application/json)

      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 AG 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/address/country (media type: application/json)

      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 AM 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/address/country (media type: application/json)

      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 AR 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/address/country (media type: application/json)

      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 AU 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/address/country (media type: application/json)

      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 AZ 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/address/country (media type: application/json)

      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 BD 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/address/country (media type: application/json)

      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 BG 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/address/country (media type: application/json)

      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 BJ 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/address/country (media type: application/json)

      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 BN 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/address/country (media type: application/json)

      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 BR 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/address/country (media type: application/json)

      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 BV 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/address/country (media type: application/json)

      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 BZ 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/address/country (media type: application/json)

      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 CD 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/address/country (media type: application/json)

      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 CH 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/address/country (media type: application/json)

      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 CL 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/address/country (media type: application/json)

      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 CO 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/address/country (media type: application/json)

      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 CV 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/address/country (media type: application/json)

      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 CY 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/address/country (media type: application/json)

      request-property-enum-value-removed

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

      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 DECLINED of the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      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 DK 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/address/country (media type: application/json)

      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 DZ 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/address/country (media type: application/json)

      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 EG 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/address/country (media type: application/json)

      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 ES 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/address/country (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 FI 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/address/country (media type: application/json)

      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 FM 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/address/country (media type: application/json)

      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 GA 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/address/country (media type: application/json)

      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 GD 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/address/country (media type: application/json)

      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 GG 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/address/country (media type: application/json)

      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 GL 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/address/country (media type: application/json)

      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 GP 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/address/country (media type: application/json)

      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 GS 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/address/country (media type: application/json)

      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 GW 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/address/country (media type: application/json)

      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 HM 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/address/country (media type: application/json)

      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 HT 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/address/country (media type: application/json)

      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 IE 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/address/country (media type: application/json)

      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 IN 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/address/country (media type: application/json)

      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 IR 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/address/country (media type: application/json)

      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 Individual of the request property payees/items/type (media type: application/json)

      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 JM 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/address/country (media type: application/json)

      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 KE 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/address/country (media type: application/json)

      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 KI 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/address/country (media type: application/json)

      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 KP 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/address/country (media type: application/json)

      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 KY 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/address/country (media type: application/json)

      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 LB 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/address/country (media type: application/json)

      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 LK 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/address/country (media type: application/json)

      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 LT 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/address/country (media type: application/json)

      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 LY 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/address/country (media type: application/json)

      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 MD 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/address/country (media type: application/json)

      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 MG 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/address/country (media type: application/json)

      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 ML 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/address/country (media type: application/json)

      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 MO 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/address/country (media type: application/json)

      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 MR 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/address/country (media type: application/json)

      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 MU 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/address/country (media type: application/json)

      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 MX 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/address/country (media type: application/json)

      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 NA 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/address/country (media type: application/json)

      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 NF 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/address/country (media type: application/json)

      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 NL 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/address/country (media type: application/json)

      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 NR 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/address/country (media type: application/json)

      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 OM 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/address/country (media type: application/json)

      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 PENDING of the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      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 PG 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/address/country (media type: application/json)

      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 PL 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/address/country (media type: application/json)

      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 PR 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/address/country (media type: application/json)

      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 PW 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/address/country (media type: application/json)

      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 RE 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/address/country (media type: application/json)

      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 RU 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/address/country (media type: application/json)

      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 SB 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/address/country (media type: application/json)

      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 SE 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/address/country (media type: application/json)

      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 SI 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/address/country (media type: application/json)

      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 SL 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/address/country (media type: application/json)

      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 SO 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/address/country (media type: application/json)

      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 ST 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/address/country (media type: application/json)

      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 SY 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/address/country (media type: application/json)

      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 TD 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/address/country (media type: application/json)

      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 TH 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/address/country (media type: application/json)

      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 TL 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/address/country (media type: application/json)

      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 TO 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/address/country (media type: application/json)

      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 TV 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/address/country (media type: application/json)

      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 UA 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/address/country (media type: application/json)

      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 US of the request property payees/items/address/country (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

    • 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 UZ 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/address/country (media type: application/json)

      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 VE 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/address/country (media type: application/json)

      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 VN 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/address/country (media type: application/json)

      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 WS 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/address/country (media type: application/json)

      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 ZA 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/address/country (media type: application/json)

      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

    • 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

  • da77064fe23375511See 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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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

    • api operation id v3CreatePayee removed and replaced with createPayeeV3

      api-operation-id-removed

    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

  • 75bb7af5ae6312See the full diff
    • the payees/items/company/name request property's minLength was increased from 1 to 3

      request-property-min-length-increased

    • endpoint deprecated

      endpoint-deprecated

    • removed the non-success response with the status 409

      response-non-success-status-removed

  • aded220b0d7b311See the full diff
    • the payees/items/company/taxId request property's minLength was increased from 0 to 6

      request-property-min-length-increased

    • the response's body type/format changed from object/ to / for status 404

      response-body-type-changed

    • the errors/items/ response's property type/format changed from object/ to / for status 404

      response-property-type-changed

    • the payees/items/company/taxId request property's maxLength was set to 30

      request-property-max-length-set

    • removed the pattern ^[\d]{9}$ from the request property payees/items/company/taxId

      request-property-pattern-removed

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

  • 7c8cfeb59952101011See the full diff
    • request property file/items/addressCountry was restricted to a list of enum values (media type: multipart/form-data)

      request-property-became-enum

    • request property file/items/paymentChannelCountryCode was restricted to a list of enum values (media type: multipart/form-data)

      request-property-became-enum

    • request property file/items/paymentChannelCurrency was restricted to a list of enum values (media type: multipart/form-data)

      request-property-became-enum

    • request property payees/items/address/country was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

    • request property payees/items/paymentChannel/countryCode was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

    • request property payees/items/paymentChannel/currency was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

    • added the pattern ^[\d]{9}$ to the request property payees/items/company/taxId (media type: application/json)

      request-property-pattern-added

    • the payees/items/individual/name request property type/format changed from object/ to / (media type: application/json)

      request-property-type-changed

    • the response's body type/format changed from object/ to / for status 409

      response-body-type-changed

    • the errors/items/ response's property type/format changed from object/ to / for status 409

      response-property-type-changed

    • added the new AD enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AQ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AQ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AX enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AX enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new AZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new AZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BB enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BB enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BJ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BJ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BQ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BQ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new BZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new BZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CX enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CX enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new CZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new CZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DJ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DJ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new DZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new DZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new EC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new EC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new EE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new EE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new EG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new EG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new EH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new EH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ER enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ER enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ES enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ES enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ET enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ET enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new EUR enum value to the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FJ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FJ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new FR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new FR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GB enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GB enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GBP enum value to the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GP enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GP enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GQ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GQ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new GY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new GY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new HU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new HU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ID enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ID enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IQ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IQ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new IT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new IT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new JE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new JE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new JM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new JM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new JO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new JO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new JP enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new JP enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KP enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KP enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new KZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new KZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LB enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LB enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new LY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new LY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ME enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ME enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new ML enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ML enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MP enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MP enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MQ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MQ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MX enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MX enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new MZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new MZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NP enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NP enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new NZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new NZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new OM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new OM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new PY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new PY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new QA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new QA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new RE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new RE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new RO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new RO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new RS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new RS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new RU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new RU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new RW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new RW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new SA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new SB enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SB enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SC enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SC enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SD enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SD enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SE enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SE enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SG enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SG enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SH enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SH enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SI enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SI enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SJ enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SJ enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SJ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SJ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SK enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SK enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SL enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SL enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SM enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SM enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SN enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SN enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SO enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SO enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SR enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SR enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SS enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SS enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new ST enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ST enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ST enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ST enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SV enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SV enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SX enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SX enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SX enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SX enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SY enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SY enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new SZ enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SZ enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new SZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new SZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TC enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TC enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TD enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TD enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TD enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TD enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TF enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TF enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TG enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TG enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TH enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TH enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TH enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TH enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TJ enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TJ enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TJ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TJ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TK enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TK enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TK enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TK enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TL enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TL enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TL enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TL enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TM enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TM enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TN enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TN enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TO enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TO enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TO enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TO enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TR enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TR enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TR enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TR enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TT enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TT enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TV enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TV enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TV enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TV enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TW enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TW enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new TZ enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TZ enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new TZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new TZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new UA enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UA enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new UA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new UG enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UG enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new UG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new UM enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UM enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new UM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new US enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new US enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new US enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new US enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-enum-value-added

    • added the new USD enum value to the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-enum-value-added

    • added the new UY enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UY enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UY enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new UY enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new UZ enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UZ enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new UZ enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new UZ enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VA enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VA enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VC enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VC enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VC enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VC enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VE enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VE enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VG enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VG enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VG enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VG enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VI enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VI enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VI enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VI enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VN enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VN enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VN enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VN enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new VU enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VU enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new VU enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new VU enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new WF enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new WF enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new WF enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new WF enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new WS enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new WS enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new WS enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new WS enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new YE enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new YE enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new YE enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new YE enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new YT enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new YT enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new YT enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new YT enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new ZA enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZA enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZA enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ZA enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new ZM enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZM enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZM enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ZM enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

    • added the new ZW enum value to the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZW enum value to the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-enum-value-added

    • added the new ZW enum value to the request property payees/items/address/country (media type: application/json)

      request-property-enum-value-added

    • added the new ZW enum value to the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-enum-value-added

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

      request-property-min-length-decreased

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

      request-property-min-length-decreased

    • the payees/items/paymentChannel/currency request property's minLength was decreased from 3 to 0 (media type: application/json)

      request-property-min-length-decreased

    • removed the pattern ^[A-Z]{2}$ from the request property file/items/addressCountry (media type: multipart/form-data)

      request-property-pattern-removed

    • removed the pattern ^[A-Z]{2}$ from the request property file/items/paymentChannelCountryCode (media type: multipart/form-data)

      request-property-pattern-removed

    • removed the pattern ^[A-Z]{2}$ from the request property payees/items/address/country (media type: application/json)

      request-property-pattern-removed

    • removed the pattern ^[A-Z]{2}$ from the request property payees/items/paymentChannel/countryCode (media type: application/json)

      request-property-pattern-removed

    • removed the pattern ^[A-Z]{3}$ from the request property file/items/paymentChannelCurrency (media type: multipart/form-data)

      request-property-pattern-removed

    • removed the pattern ^[A-Z]{3}$ from the request property payees/items/paymentChannel/currency (media type: application/json)

      request-property-pattern-removed

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

  • 68f50053dc40101231See 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 file/items/paymentChannelCurrency (media type: multipart/form-data)

      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 file/items/paymentChannelCurrency (media type: multipart/form-data)

      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 file/items/paymentChannelCurrency (media type: multipart/form-data)

      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 file/items/paymentChannelCurrency request property's minLength was increased from 0 to 3 (media type: multipart/form-data)

      request-property-min-length-increased

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

      request-property-min-length-increased

    • 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 file/items/paymentChannelCurrency (media type: multipart/form-data)

      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/individual/name request property type/format changed from / to object/ (media type: application/json)

      request-property-type-changed

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

      request-property-max-length-set

    • the payees/items/company/taxId request property's maxLength was set to 30 (media type: application/json)

      request-property-max-length-set

    • the payees/items/paymentChannel/currency request property's maxLength was set to 3 (media type: application/json)

      request-property-max-length-set

    • removed the pattern ^[\d]{9}$ from the request property payees/items/company/taxId (media type: application/json)

      request-property-pattern-removed

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

  • 1b2abf26b5d63115See the full diff
    • request property payees/items/payorRefs/items/invitationStatus was restricted to a list of enum values (media type: application/json)

      request-property-became-enum

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

      request-property-min-length-increased

    • the rejectedCsvRows/items/ response's property type/format changed from string/ to / for status 201

      response-property-type-changed

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

      request-property-max-length-set

    • added the new optional request property payees/items/payorRefs/items/invitationStatusTimestamp (media type: application/json)

      new-optional-request-property

    • added the new optional request property payees/items/payorRefs/items/paymentChannelId (media type: application/json)

      new-optional-request-property

    • request body became optional

      request-body-became-optional

    • added the new ACCEPTED enum value to the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-added

    • added the new DECLINED enum value to the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-added

    • added the new PENDING enum value to the request property payees/items/payorRefs/items/invitationStatus (media type: application/json)

      request-property-enum-value-added

    • removed the pattern [\\d]{9} from the request property file/items/companyEIN (media type: multipart/form-data)

      request-property-pattern-removed

    • added the media type application/json for the response with the status 400

      response-media-type-added

    • added the non-success response with the status 401

      response-non-success-status-added

    • added the non-success response with the status 403

      response-non-success-status-added

    • added the non-success response with the status 404

      response-non-success-status-added

    • added the non-success response with the status 409

      response-non-success-status-added

    • added the optional property rejectedCsvRows/items/lineNumber to the response with the 201 status

      response-optional-property-added

    • added the optional property rejectedCsvRows/items/message to the response with the 201 status

      response-optional-property-added

    • added the optional property rejectedCsvRows/items/rejectedContent to the response with the 201 status

      response-optional-property-added

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

    • endpoint added

      endpoint-added

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