Yapily · Schema

Yapily PaymentResponse

Open BankingAISPPISPPaymentsAccount InformationVariable Recurring PaymentsFinancial ServicesPSD2FCABerlin GroupUKEuropeFinTech

Properties

Name Type Description
id string Unique identifier of the payment.
institutionConsentId string Identification of the consent at the Institution.
paymentIdempotencyId string __Mandatory__. A unique identifier that you must provide to identify the payment. This can be any alpha-numeric string but is limited to a maximum of 35 characters.
paymentLifecycleId string
status string The status of the Payment. For more information, see [Payment Status](/guides/payments/payment-status/)
statusDetails object
payer object __Conditional__. Details of the benefactor [person or business].
payeeDetails object __Mandatory__. Details of the beneficiary [person or business].
reference string __Optional__. The payment reference or description. Limited to a maximum of 18 characters long.
amount number Monetary amount.
currency string Currency the payment amount is denoted in. Specified as a 3-letter ISO 4217 code.
amountDetails object __Mandatory__. Monetary Amount.
createdAt string Date and time of when the payment request was created.
firstPaymentAmount object __Mandatory__. Monetary Amount.
firstPaymentDateTime string Date and time of when the first payment request is to be made.
nextPaymentAmount object __Mandatory__. Monetary Amount.
nextPaymentDateTime string __Conditional__. Defines when the recurring payment is to be made.
finalPaymentAmount object __Mandatory__. Monetary Amount.
finalPaymentDateTime string Date and time of when the final payment is to be made.
numberOfPayments integer Number of recurring payment requests to be made as part of the instructed payment schedule.
previousPaymentAmount object __Mandatory__. Monetary Amount.
previousPaymentDateTime string Date and time of when the previous payment request was posted.
chargeDetails array
scheduledPaymentType string Details the execution type and the payment date between the payer and the payee.
scheduledPaymentDateTime string Date and time of when the scheduled payment request will be made.
frequency object __Mandatory__. Defines the intervals at which payment should be made.
currencyOfTransfer string __Mandatory__. The currency to be transferred to the payee. This may differ from the currency the payment is denoted in and the currency of the payer's account. Specified as a 3-letter code (ISO 4217)
purpose string Specifies the external purpose code for the `Institution` - IS0 20022.
priority string
exchangeRate object
refundAccount object The account to which funds should be returned if the payment is to be later refunded.
bulkAmountSum number
View JSON Schema on GitHub

JSON Schema

yapily-payment-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/yapily/main/json-schema/yapily-payment-response-schema.json",
  "title": "Yapily PaymentResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the payment."
    },
    "institutionConsentId": {
      "type": "string",
      "description": "Identification of the consent at the Institution."
    },
    "paymentIdempotencyId": {
      "type": "string",
      "description": "__Mandatory__. A unique identifier that you must provide to identify the payment. This can be any alpha-numeric string but is limited to a maximum of 35 characters."
    },
    "paymentLifecycleId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "description": "The status of the Payment. \n\nFor more information, see [Payment Status](/guides/payments/payment-status/)",
      "enum": [
        "PENDING",
        "FAILED",
        "DECLINED",
        "COMPLETED",
        "COMPLETED_SETTLEMENT_IN_PROCESS",
        "EXPIRED",
        "UNKNOWN",
        "ACTIVE",
        "INACTIVE"
      ]
    },
    "statusDetails": {
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "description": "The status of the Payment. \n\nFor more information, see [Payment Status](/guides/payments/payment-status/)",
          "enum": [
            "PENDING",
            "FAILED",
            "DECLINED",
            "COMPLETED",
            "COMPLETED_SETTLEMENT_IN_PROCESS",
            "EXPIRED",
            "UNKNOWN",
            "ACTIVE",
            "INACTIVE"
          ]
        },
        "statusReason": {
          "type": "string"
        },
        "statusReasonDescription": {
          "type": "string"
        },
        "statusUpdateDate": {
          "type": "string",
          "format": "date-time"
        },
        "multiAuthorisationStatus": {
          "type": "object",
          "description": "Details the additional levels of authorisation which are required from, and being managed by, the `Institution`.",
          "properties": {
            "status": {
              "type": "string",
              "description": "__Mandatory__. Specifies the current status of the multi-authorisation flow."
            },
            "numberOfAuthorisationRequired": {
              "type": "integer",
              "description": "__Mandatory__. Total number of authorisations required.",
              "format": "int32"
            },
            "numberOfAuthorisationReceived": {
              "type": "integer",
              "description": "__Mandatory__. The total number of authorisations that have been received.",
              "format": "int32"
            },
            "lastUpdatedDateTime": {
              "type": "string",
              "description": "__Mandatory__. Date and time of when the authorisation was last updated.",
              "format": "date-time"
            },
            "expirationDateTime": {
              "type": "string",
              "description": "__Mandatory__. Date and time by when the authorisation flow must be completed before it expires and the authorisation request is terminated.",
              "format": "date-time"
            }
          }
        },
        "isoStatus": {
          "type": "object",
          "description": "The payment status code, as denoted by a 3-letter ISO 20022 code.",
          "properties": {
            "code": {
              "type": "string",
              "description": "The ISO 20022 `PaymentStatusCode`.",
              "example": "ACCC",
              "enum": [
                "ACCC",
                "ACCP",
                "ACSC",
                "ACSP",
                "ACTC",
                "ACWC",
                "ACWP",
                "RCVD",
                "PDNG",
                "RJCT",
                "CANC",
                "ACFC",
                "PATC",
                "PART",
                "ACCO"
              ]
            },
            "name": {
              "type": "string",
              "description": "The full name of the ISO 20022 `PaymentStatusCode`.",
              "example": "AcceptedCreditSettlementCompleted"
            }
          }
        }
      }
    },
    "payer": {
      "title": "Payer Details",
      "required": [
        "accountIdentifications"
      ],
      "type": "object",
      "properties": {
        "name": {
          "title": "Payer Name",
          "type": "string",
          "description": "The account holder name of the Payer.",
          "example": "John Doe"
        },
        "accountIdentifications": {
          "uniqueItems": true,
          "type": "array",
          "description": "__Mandatory__. The account identifications that identify the `Payer` bank account.",
          "items": {
            "title": "Account Identifications",
            "required": [
              "type",
              "identification"
            ],
            "type": "object",
            "properties": {
              "type": {
                "title": "Account Identification Type",
                "type": "string",
                "description": "__Mandatory__. Used to describe the format of the account.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on when to specify each type.",
                "example": "SORT_CODE",
                "enum": [
                  "SORT_CODE",
                  "ACCOUNT_NUMBER",
                  "IBAN",
                  "BBAN",
                  "BIC",
                  "PAN",
                  "MASKED_PAN",
                  "MSISDN",
                  "BSB",
                  "NCC",
                  "ABA",
                  "ABA_WIRE",
                  "ABA_ACH",
                  "EMAIL",
                  "ROLL_NUMBER",
                  "BLZ",
                  "IFS",
                  "CLABE",
                  "CTN",
                  "BRANCH_CODE",
                  "VIRTUAL_ACCOUNT_ID"
                ]
              },
              "identification": {
                "title": "Account Identification",
                "type": "string",
                "description": "__Mandatory__. The value associated with the account identification type.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on the format of the values.",
                "example": "401016"
              }
            }
          }
        },
        "address": {
          "title": "Address Details",
          "type": "object",
          "properties": {
            "addressLines": {
              "title": "Address Lines",
              "type": "array",
              "description": "__Optional__. The address line of the address",
              "example": [
                "Ardenham Court"
              ],
              "items": {
                "type": "string"
              }
            },
            "streetName": {
              "title": "Street",
              "type": "string",
              "description": "__Optional__. The street name of the address",
              "example": "Oxford Road"
            },
            "buildingNumber": {
              "title": "Building Number",
              "type": "string",
              "description": "__Optional__. The building number of the address",
              "example": "45"
            },
            "postCode": {
              "title": "Post Code",
              "type": "string",
              "description": "__Optional__. The post code of the address",
              "example": "HP19 3EQ"
            },
            "townName": {
              "title": "Town",
              "type": "string",
              "description": "__Optional__. The town name of the address",
              "example": "Aylesbury"
            },
            "county": {
              "title": "County",
              "type": "array",
              "description": "__Optional__. The list of counties for the address",
              "example": [
                "Buckinghamshire"
              ],
              "items": {
                "type": "string"
              }
            },
            "country": {
              "title": "Country",
              "type": "string",
              "description": "__Conditional__. The 2-letter country code for the address. \n\nAn `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment",
              "example": "GB"
            },
            "department": {
              "title": "Department",
              "type": "string",
              "description": "__Optional__. The department for the address",
              "example": "Unit 2"
            },
            "subDepartment": {
              "title": "Sub-Department",
              "type": "string",
              "description": "__Optional__. The sub-department for the address",
              "example": "Floor 3"
            },
            "addressType": {
              "title": "Address Type",
              "type": "string",
              "description": "__Optional__. The type of address",
              "enum": [
                "BUSINESS",
                "CORRESPONDENCE",
                "DELIVERY_TO",
                "MAIL_TO",
                "PO_BOX",
                "POSTAL",
                "RESIDENTIAL",
                "STATEMENT",
                "UNKNOWN"
              ]
            }
          },
          "description": "__Conditional__. The address of the `Payee` or `Payer`.\n\n- `payee.address` is mandatory when the `paymentType` is an `INTERNATIONAL` payment\n- An `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment.",
          "example": {
            "country": "GB"
          }
        }
      },
      "description": "__Conditional__. Details of the benefactor [person or business]."
    },
    "payeeDetails": {
      "title": "Payee Details",
      "type": "object",
      "description": "__Mandatory__. Details of the beneficiary [person or business].",
      "required": [
        "accountIdentifications",
        "name"
      ],
      "properties": {
        "name": {
          "title": "Payee Name",
          "type": "string",
          "description": "__Mandatory__. The account holder name of the beneficiary.",
          "example": "Jane Doe"
        },
        "accountIdentifications": {
          "uniqueItems": true,
          "type": "array",
          "description": "__Mandatory__. The account identifications that identify the `Payee` bank account.",
          "example": [
            {
              "identification": "401016",
              "type": "SORT_CODE"
            },
            {
              "identification": "71518920",
              "type": "ACCOUNT_NUMBER"
            }
          ],
          "items": {
            "title": "Account Identifications",
            "required": [
              "type",
              "identification"
            ],
            "type": "object",
            "properties": {
              "type": {
                "title": "Account Identification Type",
                "type": "string",
                "description": "__Mandatory__. Used to describe the format of the account.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on when to specify each type.",
                "example": "SORT_CODE",
                "enum": [
                  "SORT_CODE",
                  "ACCOUNT_NUMBER",
                  "IBAN",
                  "BBAN",
                  "BIC",
                  "PAN",
                  "MASKED_PAN",
                  "MSISDN",
                  "BSB",
                  "NCC",
                  "ABA",
                  "ABA_WIRE",
                  "ABA_ACH",
                  "EMAIL",
                  "ROLL_NUMBER",
                  "BLZ",
                  "IFS",
                  "CLABE",
                  "CTN",
                  "BRANCH_CODE",
                  "VIRTUAL_ACCOUNT_ID"
                ]
              },
              "identification": {
                "title": "Account Identification",
                "type": "string",
                "description": "__Mandatory__. The value associated with the account identification type.\n\n See [Account Identification Combinations](/payments/payment-resources/intro-to-payment-execution#account-identifications-combinations) for more information on the format of the values.",
                "example": "401016"
              }
            }
          }
        },
        "accountType": {
          "title": "Payee Account Type",
          "type": "string",
          "description": "__Optional__. The payee account type. \n\nAllowed values: BUSINESS, BUSINESS_SAVING, CHARITY, COLLECTION, CORPORATE, E_WALLET, GOVERNMENT, INVESTMENT, INVESTMENT_ISA, JOINT_PERSONAL, PENSION, PERSONAL, PERSONAL_SAVING, PREMIER, WEALTH ."
        },
        "address": {
          "title": "Address Details",
          "type": "object",
          "properties": {
            "addressLines": {
              "title": "Address Lines",
              "type": "array",
              "description": "__Optional__. The address line of the address",
              "example": [
                "Ardenham Court"
              ],
              "items": {
                "type": "string"
              }
            },
            "streetName": {
              "title": "Street",
              "type": "string",
              "description": "__Optional__. The street name of the address",
              "example": "Oxford Road"
            },
            "buildingNumber": {
              "title": "Building Number",
              "type": "string",
              "description": "__Optional__. The building number of the address",
              "example": "45"
            },
            "postCode": {
              "title": "Post Code",
              "type": "string",
              "description": "__Optional__. The post code of the address",
              "example": "HP19 3EQ"
            },
            "townName": {
              "title": "Town",
              "type": "string",
              "description": "__Optional__. The town name of the address",
              "example": "Aylesbury"
            },
            "county": {
              "title": "County",
              "type": "array",
              "description": "__Optional__. The list of counties for the address",
              "example": [
                "Buckinghamshire"
              ],
              "items": {
                "type": "string"
              }
            },
            "country": {
              "title": "Country",
              "type": "string",
              "description": "__Conditional__. The 2-letter country code for the address. \n\nAn `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment",
              "example": "GB"
            },
            "department": {
              "title": "Department",
              "type": "string",
              "description": "__Optional__. The department for the address",
              "example": "Unit 2"
            },
            "subDepartment": {
              "title": "Sub-Department",
              "type": "string",
              "description": "__Optional__. The sub-department for the address",
              "example": "Floor 3"
            },
            "addressType": {
              "title": "Address Type",
              "type": "string",
              "description": "__Optional__. The type of address",
              "enum": [
                "BUSINESS",
                "CORRESPONDENCE",
                "DELIVERY_TO",
                "MAIL_TO",
                "PO_BOX",
                "POSTAL",
                "RESIDENTIAL",
                "STATEMENT",
                "UNKNOWN"
              ]
            }
          },
          "description": "__Conditional__. The address of the `Payee` or `Payer`.\n\n- `payee.address` is mandatory when the `paymentType` is an `INTERNATIONAL` payment\n- An `Institution` may require you to specify the `country` when used in the context of the `Payee` to be able to make a payment.",
          "example": {
            "country": "GB"
          }
        },
        "merchantId": {
          "title": "Merchant Id",
          "type": "string",
          "description": "__Optional__. The merchant ID is a unique code provided by the payment processor to the merchant.",
          "example": "24589303"
        },
        "merchantCategoryCode": {
          "title": "Merchant Category",
          "type": "string",
          "format": "^\\d{4}$",
          "description": "__Optional__. The category code of the merchant in case the `Payee` is a business. Specified as a 4-letter ISO 18245 code.\n\nAllowed values:\n\n- `0742` (Veterinary Services)\n- `0763` (Agricultural Cooperatives)\n- `0780` (Landscaping and Horticultural Services)\n- `1520` (General Contractor/Residential Building)\n- `1711` (Heating, Plumbing, Air Conditioning Contractors)\n- `1731` (Electrical Contractors)\n- `1740` (Masonry, Stonework, Tile Setting, Plastering, Insulation Contractors)\n- `1750` (Carpentry)\n- `1761` (Roof, Siding, and Sheet Metal Work Contractors)\n- `1771` (Contractors, Concrete)\n- `1799` (Special Trade Contractor - Not Elsewhere Classified)\n- `2741` (Miscellaneous Publishing and Printing Services)\n- `2791` (Typesetting, Plate Making and Related Services (Business to Business MCC))\n- `2842` (Specialty Cleaning, Polishing and Sanitation Preparations (Business to Business MCC))\n- `3000` (United Airlines)\n- `3001` (American Airlines)\n- `3002` (Pan American)\n- `3003` (Eurofly Airlines)\n- `3004` (Dragon Airlines)\n- `3005` (British Airways)\n- `3006` (Japan Air Lines)\n- `3007` (Air France)\n- `3008` (Lufthansa)\n- `3009` (Air Canada)\n- `3010` (KLM)\n- `3011` (AeroFlot)\n- `3012` (Qantas)\n- `3013` (Alitalia)\n- `3014` (Saudi Arabian Airlines)\n- `3015` (SWISS)\n- `3016` (SAS)\n- `3017` (South African Airway)\n- `3018` (Varig (Brazil))\n- `3020` (Air India)\n- `3021` (Air Algerie)\n- `3022` (PAL AIR)\n- `3023` (Mexicana)\n- `3024` (Pakistan International)\n- `3025` (Air New Zealand Ltd.)\n- `3026` (Emirates Airlines)\n- `3027` (UTA/InterAir)\n- `3028` (Air Malta)\n- `3029` (SN Brussels Airlines - SN BRUSSELS)\n- `3030` (Aerolineas Argentinas)\n- `3031` (Olympic Airways)\n- `3032` (El Al)\n- `3033` (Ansett Airlines)\n- `3034` (ETIHADAIR)\n- `3035` (TAP (Portugal))\n- `3036` (VASP (Brazil))\n- `3037` (EgyptAir)\n- `3038` (Kuwait Airways)\n- `3039` (Avianca)\n- `3040` (GulfAir (Bahrain))\n- `3041` (Balkan-Bulgarian)\n- `3042` (FinnAir)\n- `3043` (Aer Lingus)\n- `3044` (Air Lanka)\n- `3045` (Nigeria Airways)\n- `3046` (Cruzeiro do Sul (Bra))\n- `3047` (THY (Turkey))\n- `3048` (Royal Air Maroc)\n- `3049` (Tunis Air)\n- `3050` (Icelandair)\n- `3051` (Austrian Airlines)\n- `3052` (LANAIR)\n- `3053` (AVIACO (Spain))\n- `3054` (Ladeco (Chile))\n- `3055` (LAB (Bolivia))\n- `3056` (JetAir)\n- `3057` (Virgin America \u2013 VIR AMER)\n- `3058` (Delta)\n- `3059` (DBA Airlines-DBA AIR)\n- `3060` (NWA Air)\n- `3061` (Continental)\n- `3062` (Hapag-Lloyd Express - HLX)\n- `3063` (US Airways)\n- `3064` (Adria Airways)\n- `3065` (Airinter (AirInternational))\n- `3066` (Southwest)\n- `3068` (AIR STANA)\n- `3069` (Sun Country Air)\n- `3070` (Pacific Southwest Airlines (PSA))\n- `3071` (Air British Columbia)\n- `3072` (CEBU PAC)\n- `3073` (Air Cal)\n- `3075` (Singapore Airlines)\n- `3076` (Aeromexico)\n- `3077` (Thai Airways)\n- `3078` (China Airlines)\n- `3079` (Jetstar Airways - Jetstar)\n- `3081` (NordAir)\n- `3082` (Korean Airlines)\n- `3083` (Air Afrique)\n- `3084` (Eva Airlines)\n- `3085` (Midwest Express Airlines, Inc)\n- `3087` (Metro Airlines)\n- `3088` (Croatia Airlines)\n- `3089` (Tans Saero)\n- `3090` (Uni Airways)\n- `3094` (Zambia Airways)\n- `3096` (Air Zimbabwe)\n- `3097` (Spanair (abbreviation: SPANAIR))\n- `3098` (Asiana Airlines)\n- `3099` (Cathay Pacific)\n- `3100` (Malaysian Airline Sys)\n- `3102` (Iberia)\n- `3103` (Garuda (Indonesia))\n- `3105` (Piedmont)\n- `3106` (Braathens S.A.F.E. (Norway))\n- `3110` (Wings Airways)\n- `3111` (British Midland)\n- `3112` (Windward Island)\n- `3117` (Venezolana Int de Aviacion)\n- `3118` (Valley Airlines)\n- `3125` (Tan Airlines)\n- `3126` (Talair PTY Ltd.)\n- `3127` (Taca International)\n- `3129` (Surinam Airways)\n- `3130` (Sunworld International Airways)\n- `3131` (VLM Air)\n- `3132` (Frontier Airlines)\n- `3133` (Sunbelt Airlines)\n- `3135` (Sudan Airlines)\n- `3136` (Qatar Air)\n- `3137` (Singleton)\n- `3138` (Simmons Airlines)\n- `3141` (Seair Alaska)\n- `3143` (Scenic Airlines)\n- `3144` (Virgin Atlantic)\n- `3145` (San Juan)\n- `3146` (Luxair)\n- `3148` (Air Littoral SA)\n- `3151` (Air Laire)\n- `3154` (Princeville)\n- `3156` (Go Fly)\n- `3159` (PBA-Provincetwn-Bstn Air)\n- `3161` (All Nippon Airways)\n- `3164` (Norontair)\n- `3165` (New York Helicopter)\n- `3167` (Aero Continente - AEROCONTINENTE)\n- `3170` (Mount Cook)\n- `3171` (Canadian Airlines)\n- `3172` (Nation Air)\n- `3174` (JetBlue Airways)\n- `3175` (Middle East Air)\n- `3176` (Metroflight Airlines)\n- `3177` (AirTran Airways)\n- `3178` (Mesa Air)\n- `3180` (Westjet Airlines-WESTJET)\n- `3181` (Malev Hungarian Airlines)\n- `3182` (LOT (Poland))\n- `3183` (Oman Aviation - OMAN AIR)\n- `3184` (LIAT)\n- `3185` (LAV (Venezuela))\n- `3186` (LAP (Paraguay))\n- `3187` (LACSA (Costa Rica))\n- `3188` (Virgin Express - VIR EXP)\n- `3190` (Jugoslav Air)\n- `3191` (Island Airlines)\n- `3192` (Iran Air)\n- `3193` (Indian Airlines)\n- `3195` (Holiday Airlines)\n- `3196` (Hawaiian Air)\n- `3197` (Havasu Airlines)\n- `3198` (Harbor Airlines)\n- `3199` (Servicios Aereos Militares)\n- `3200` (Guyana Airways)\n- `3203` (Golden Pacific Air)\n- `3204` (Freedom Airlines)\n- `3206` (China Eastern Airlines (Abbr: China East Air))\n- `3207` (Empresa Ecuatoriana)\n- `3211` (Norwegian Air Shuttle - NORWEGIANAIR)\n- `3212` (Dominicana de Aviacion)\n- `3213` (Malmo Aviation - MALMO AV)\n- `3215` (Dan Air Services)\n- `3216` (Cumberland Airlines)\n- `3217` (CSA-Ceskoslovenske Aeroln)\n- `3218` (Crown Air)\n- `3219` (Copa)\n- `3220` (Compania Faucett)\n- `3221` (Transportes Aeros Mil)\n- `3222` (Command Airways)\n- `3223` (Comair)\n- `3226` (Skyways Air- SKYWAYS)\n- `3228` (Cayman Airways)\n- `3229` (SAETA)\n- `3231` (SAHSA)\n- `3233` (Capitol Air)\n- `3234` (CARIBAIR)\n- `3235` (Brockway Air)\n- `3236` (Air Arabia Airlines - Air Arab)\n- `3238` (Bemidji Aviation)\n- `3239` (Bar Harbor Airlines)\n- `3240` (Bahamasair)\n- `3241` (Aviateca (Guatemala))\n- `3242` (Avensa)\n- `3243` (Austrian Air Service)\n- `3245` (Easy Jet - EASYJET)\n- `3246` (Ryan Air - RYANAIR)\n- `3247` (Gol Airlines - GOL)\n- `3248` (Tam Airlines - TAM)\n- `3251` (Aloha Airlines)\n- `3252` (ALM-Antilean Airlines)\n- `3253` (America West)\n- `3254` (U.S. Air Shuttle)\n- `3256` (Alaska Airlines Inc.)\n- `3259` (American Trans Air)\n- `3260` (Spirit Airlines - SPIRIT)\n- `3261` (Air China)\n- `3262` (Reno Air)\n- `3263` (Aero Servicio Carabobo)\n- `3266` (Air Seychelles)\n- `3267` (Air Panama International)\n- `3268` (Air Pacific)\n- `3275` (Air Nevada)\n- `3276` (Air Midwest)\n- `3277` (Air Madagascar)\n- `3279` (Air LA)\n- `3280` (Air Jamaica)\n- `3282` (Air Djibouti)\n- `3284` (Aero Virgin Islands)\n- `3285` (AeroPeru)\n- `3286` (Aero Nicaraguensis)\n- `3287` (Aero Coach Aviation)\n- `3291` (Ariana Afghan)\n- `3292` (Cyprus Airways)\n- `3293` (Ecuatoriana)\n- `3294` (Ethiopian Airlines)\n- `3295` (Kenya Airways)\n- `3296` (Air Berlin-AIRBERLIN)\n- `3297` (Tarom Romanian Air Transport)\n- `3298` (Air Mauritius)\n- `3299` (Wideroe's Flyveselskap)\n- `3351` (Affiliated Auto Rental)\n- `3352` (American International)\n- `3353` (Brooks Rent a Car)\n- `3354` (Action Auto Rental)\n- `3355` (SIXT Car Rental)\n- `3357` (Hertz)\n- `3359` (Payless Car Rental)\n- `3360` (Snappy Car Rental)\n- `3361` (Airways Rent a Car)\n- `3362` (Altra Auto Rental)\n- `3364` (Agency Rent a Car)\n- `3366` (Budget Rent a Car)\n- `3368` (Holiday R-A-C)\n- `3370` (Rent-a-Wreck)\n- `3374` (Accent Rent-A-Car)\n- `3376` (Ajax R-A-C)\n- `3380` (Triangle Rent a Car)\n- `3381` (Europ Car)\n- `3385` (Tropical R-A-C)\n- `3386` (Showcase Rental Cars)\n- `3387` (Alamo Rent a Car)\n- `3388` (Merchants Rent-A-Car, Inc)\n- `3389` (Avis R-A-C)\n- `3390` (Dollar R-A-C)\n- `3391` (Europe by Car)\n- `3393` (National Car Rental)\n- `3394` (Kemwell Group R-A-C)\n- `3395` (Thrify Car Rental)\n- `3396` (Tilden R-A-C)\n- `3398` (Econo Car R-A-C)\n- `3400` (Auto Host Car Rentals)\n- `3405` (Enterprise R-A-C)\n- `3409` (General Rent-a-Car)\n- `3412` (A-1 R-A-C)\n- `3414` (Godfrey National)\n- `3420` (ANSA International)\n- `3421` (Allstate Rent-a-Car)\n- `3423` (Avcar Rent-a-Car)\n- `3425` (Automate Rent-a-Car)\n- `3427` (Avon Rent-a-Car)\n- `3428` (Carey Rent-a-Car)\n- `3429` (Insurance Rent-a-Car)\n- `3430` (Major Rent-a-Car)\n- `3431` (Replacement Rent-a-Car)\n- `3432` (Reserve Rent-a-Car)\n- `3433` (Ugly Duckling R-A-C)\n- `3434` (USA Rent-a-Car)\n- `3435` (Value Rent-a-Car)\n- `3436` (Autohansa Rent-a-Car)\n- `3437` (Cite)\n- `3438` (Interenet Rent-a-Car)\n- `3439` (Millville Rent-a-Car)\n- `3441` (Advantage Rent A Car)\n- `3501` (Holiday Inns)\n- `3502` (Best Western Hotels)\n- `3503` (Sheraton)\n- `3504` (Hilton)\n- `3505` (Forte Hotels)\n- `3506` (Golden Tulip Hotels)\n- `3507` (Friendship Inns)\n- `3508` (Quality Inns)\n- `3509` (Marriott)\n- `3510` (Days Inn Colonial Resort)\n- `3511` (Arabella Hotels)\n- `3512` (Intercontinental Hotels)\n- `3513` (Westin)\n- `3514` (Amerisuites)\n- `3515` (Rodeway Inn)\n- `3516` (LaQuinta Motor Inns)\n- `3517` (Americana Hotels)\n- `3518` (Sol Hotels)\n- `3519` (Pullman International Hotels)\n- `3520` (Meridien Hotels)\n- `3521` (Royal Lahaina Resort)\n- `3522` (Tokyo Group)\n- `3523` (Peninsula Hotels)\n- `3524` (WelcomGroup Hotels)\n- `3525` (Dunfey Hotels)\n- `3526` (Prince Hotels)\n- `3527` (Downtowner Passport)\n- `3528` (Red Lion Inns)\n- `3529` (CP (Canadian Pacific))\n- `3530` (Renaissance Hotels)\n- `3531` (Kauai Coconut Beach Resort)\n- `3532` (Royal Kona Resort)\n- `3533` (Hotel Ibis)\n- `3534` (Southern Pacific)\n- `3535` (Hilton International)\n- `3536` (AMFAC Hotels)\n- `3537` (ANA Hotels)\n- `3538` (Concorde Hotels)\n- `3539` (Summerfield Suites Hotel)\n- `3540` (Iberotel Hotels)\n- `3541` (Hotel Okura)\n- `3542` (Royal Hotels)\n- `3543` (Four Seasons)\n- `3544` (Cigna Hotels)\n- `3545` (Shangri-La International)\n- `3546` (Hotel Sierra)\n- `3548` (Hotels Melia)\n- `3549` (Auberge des Governeurs)\n- `3550` (Regal 8 Inns)\n- `3551` (Mirage Hotel and Casino)\n- `3552` (Coast Hotel)\n- `3553` (Park Inn by Radisson)\n- `3554` (Pinehurst Resort)\n- `3555` (Treasure Island Hotel and Casino)\n- `3556` (Barton Creek Resort)\n- `3557` (Manhattan East Suite Hotels)\n- `3558` (Jolly Hotels)\n- `3559` (Candlewood Suites)\n- `3560` (Aladdin Resort and Casino)\n- `3561` (Golden Nugget)\n- `3562` (Comfort Inns)\n- `3563` (Journey's End Motels)\n- `3564` (Sam's Town Hotel and Casino)\n- `3565` (Relax Inns)\n- `3566` (Garden Place Hotel)\n- `3567` (Soho Grand Hotel)\n- `3568` (Ladbroke Hotels)\n- `3569` (Tribeca Grand Hotel)\n- `3570` (Forum Hotels)\n- `3571` (Grand Wailea Resort)\n- `3572` (Miyako Hotel)\n- `3573` (Sandman Hotels)\n- `3574` (Venture Inn)\n- `3575` (Vagabond Hotels)\n- `3576` (La Quinta Resort)\n- `3577` (Mandarin Oriental Hotel)\n- `3578` (Frankenmuth Bavarian)\n- `3579` (Hotel Mercure)\n- `3580` (Hotel Del Coronado)\n- `3581` (Delta Hotels)\n- `3582` (California Hotel and Casino)\n- `3583` (Radisson BLU)\n- `3584` (Princess Hotels International)\n- `3585` (Hungar Hotels)\n- `3586` (Sokos Hotels)\n- `3587` (Doral Hotels)\n- `3588` (Helmsley Hotels)\n- `3589` (Doral Golf Resort)\n- `3590` (Fairmont Hotel)\n- `3591` (Sonesta Hotels)\n- `3592` (Omni Hotels)\n- `3593` (Cunard Hotels)\n- `3594` (Arizona Biltmore)\n- `3595` (Hospitality Inns)\n- `3596` (Wynn Las Vegas)\n- `3597` (Riverside Resort and Casino)\n- `3598` (Regent International Hotels)\n- `3599` (Pannonia Hotels)\n- `3600` (Saddlebrook Resort - Tampa)\n- `3601` (Trade Winds Resorts)\n- `3602` (Hudson Hotel)\n- `3603` (Noah's Hotel)\n- `3604` (Hilton Garden Inn)\n- `3605` (Jurys Doyle Hotel Group)\n- `3606` (Jefferson Hotel)\n- `3607` (Fountainebleau Resort)\n- `3608` (Gaylord Opryland)\n- `3609` (Gaylord Palms)\n- `3610` (Gaylord Texan)\n- `3611` (C MON INN)\n- `3612` (Movenpick Hotels)\n- `3613` (Microtel Inns & Suites)\n- `3614` (Americinn)\n- `3615` (Travelodge Motels)\n- `3617` (America's Best Value Inn)\n- `3618` (Great Wolf)\n- `3619` (Aloft)\n- `3620` (Binion's Horseshoe Club)\n- `3621` (Extended Stay)\n- `3622` (Merlin Hotel)\n- `3623` (Dorint Hotels)\n- `3624` (Lady Luck Hotel and Casino)\n- `3625` (Hotel Universale)\n- `3626` (Studio Plus)\n- `3627` (Extended Stay America)\n- `3628` (Excalibur Hotel and Casino)\n- `3629` (Dan Hotels)\n- `3630` (Extended Stay Deluxe)\n- `3631` (Sleep Inn)\n- `3632` (The Phoenician)\n- `3633` (Rank Hotels)\n- `3634` (Swissotel)\n- `3635` (Reso Hotel)\n- `3636` (Sarova Hotels)\n- `3637` (Ramada Inns)\n- `3638` (Howard Johnson)\n- `3639` (Mount Charlotte Thistle)\n- `3640` (Hyatt Motels)\n- `3641` (Sofitel Hotels)\n- `3642` (Novotel)\n- `3643` (Steigenberger Hotels)\n- `3644` (EconoLodges)\n- `3645` (Queens Moat Houses)\n- `3646` (Swallow Hotels)\n- `3647` (Husa Hotels)\n- `3648` (De Vere Hotels)\n- `3649` (Radisson)\n- `3650` (Red Roof Inns)\n- `3651` (Imperial London Hotel)\n- `3652` (Embassy Hotels)\n- `3653` (Penta Hotels)\n- `3654` (Loews Hotels)\n- `3655` (Scandic Hotels)\n- `3656` (Sara Hotels)\n- `3657` (Oberoi Hotels)\n- `3658` (New Otani Hotels)\n- `3659` (Taj Hotels International)\n- `3660` (Knights Inn)\n- `3661` (Metropole Hotels)\n- `3662` (Circus Circus Hotel and Casino)\n- `3663` (Hoteles El Presidente)\n- `3664` (Flag Inns)\n- `3665` (Hampton Inn Hotels)\n- `3666` (Stakis Hotels)\n- `3667` (Luxor Hotel and Casino)\n- `3668` (Maritim Hotels)\n- `3669` (Eldorado Hotel and Casino)\n- `3670` (Arcade Hotels)\n- `3671` (Arctia Hotels)\n- `3672` (Campanile Hotels)\n- `3673` (IBUSZ Hotels)\n- `3674` (Rantasipi Hotels)\n- `3675` (Interhotel CEDOK)\n- `3676` (Monte Carlo Hotel and Casino)\n- `3677` (Climat de France Hotels)\n- `3678` (Cumulus Hotels)\n- `3679` (Silver Legacy Hotel and Casino)\n- `3680` (Hoteis Othan)\n- `3681` (Adams Mark Hotels)\n- `3682` (Sahara Hotel and Casino)\n- `3683` (Bradbury Suites)\n- `3684` (Budget Hosts Inns)\n- `3685` (Budgetel Hotels)\n- `3686` (Suisse Chalet)\n- `3687` (Clarion Hotels)\n- `3688` (Compri Hotels)\n- `3689` (Consort Hotels)\n- `3690` (Courtyard Inns)\n- `3691` (Dillon Inn)\n- `3692` (Doubletree)\n- `3693` (Drury Inn)\n- `3694` (Economy Inns of America)\n- `3695` (Embassy Suites)\n- `3696` (Excel Inn)\n- `3697` (Fairfield Hotels)\n- `3698` (Harley Hotels)\n- `3699` (Midway Motor Lodge)\n- `3700` (Motel 6)\n- `3701` (La Mansion Del Rio)\n- `3702` (The Registry Hotels)\n- `3703` (Residence Inn)\n- `3704` (Royce Hotels)\n- `3705` (Sandman Inn)\n- `3706` (Shilo Inn)\n- `3707` (Shoney's Inn)\n- `3708` (Virgin River Hotel and Casino)\n- `3709` (Super 8 Motels)\n- `3710` (The Ritz Carlton Hotels)\n- `3711` (Flag Inns (Australia))\n- `3712` (Buffalo Bill's Hotel and Casino)\n- `3713` (Quality Pacific Hotel)\n- `3714` (Four Seasons Hotels-Austr)\n- `3715` (Fairfield Inn)\n- `3716` (Carlton Hotels)\n- `3717` (City Lodge Hotels)\n- `3718` (Karos Hotels)\n- `3719` (Protea Hotels)\n- `3720` (Southern Sun Hotels)\n- `3721` (Hilton Conrad Hotels)\n- `3722` (Wyndham Hotels)\n- `3723` (Rica Hotels)\n- `3724` (Inter Nor Hotels)\n- `3725` (SeaPines Plantation)\n- `3726` (Rio Suites)\n- `3727` (Broadmoor Hotel)\n- `3728` (Bally's Hotel and Casino)\n- `3729` (John Ascuaga's Nugget)\n- `3730` (MGM Grand Hotel)\n- `3731` (Harrah's Hotels and Casinos)\n- `3732` (Opryland Hotel)\n- `3733` (Boca Raton Resort)\n- `3734` (Harvey/Bristol Hotels)\n- `3735` (Master Economy Inns)\n- `3736` (Colorado Belle/Edgewater Resort)\n- `3737` (Riviera Hotel and Casino)\n- `3738` (Tropicana Resort & Casino)\n- `3739` (Woodside Hotels & Resorts)\n- `3740` (Towneplace Suites)\n- `3741` (Millennium Hotel)\n- `3742` (Club Med)\n- `3743` (Biltmore Hotel and Suites)\n- `3744` (Carefre

# --- truncated at 32 KB (61 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/yapily/refs/heads/main/json-schema/yapily-payment-response-schema.json