Are you looking for test card numbers?

Would you like to contact support?

Payment-method icon

Car rental ESD

You can send car rental ESD for US domestic transactions with commercial or consumer cards if you have one of the following MCCs:

  • 3351-3500
  • 7512
  • 7513
  • 7519

Sending car rental data can lower your interchange fees for Visa and Mastercard transactions. To send airline data for American Express, see ESD for American Express.

Send the following fields in the /payments request. Do not send them with a /capture request.

Send the following fields in your /payments or /capture request:

Field Required
carRental.rentalAgreementNumber -white_check_mark-
carRental.renterName -white_check_mark-
carRental.returnCity -white_check_mark-
carRental.returnStateProvince -white_check_mark-
carRental.returnCountry -white_check_mark-
carRental.returnLocationId -white_check_mark-
carRental.checkOutDate -white_check_mark-
carRental.returnDate -white_check_mark-
carRental.customerServiceTollFreeNumber -white_check_mark-
carRental.rate
carRental.rateIndicator
carRental.locationCity
carRental.locationStateProvince
carRental.locationCountry
carRental.rentalClassId
carRental.taxExemptIndicator
carRental.daysRented
carRental.fuelCharges
carRental.insuranceCharges
carRental.noShowIndicator
carRental.oneWayDropOffCharges

Below is an example of a /payments request with car rental ESD.

Payments request
{
  "amount": {
    "currency": "USD",
    "value": 20000
  },
  "reference": "YOUR_ORDER_NUMBER",
  "paymentMethod":{
    "type":"scheme",
    "cvc": "737",
    "expiryMonth": "10",
    "expiryYear": "2026",
    "holderName": "John Smith",
    "number": "4111111111111111"
  },
  "returnUrl": "https://your-company.com/...",
  "merchantAccount": "YOUR_MERCHANT_ACCOUNT",
  "additionalData": {
     "travelEntertainmentAuthData.market":"H",
     "travelEntertainmentAuthData.duration":"1",
     "carRental.rentalAgreementNumber":"123456789",
     "carRental.renterName":"John Smith",
     "carRental.returnCity":"San Francisco",
     "carRental.returnStateProvince":"CA",
     "carRental.returnCountry":"US",
     "carRental.returnLocationId":"AB1234",
     "carRental.checkOutDate":"20230101",
     "carRental.customerServiceTollFreeNumber":"8001010123",
     "carRental.rate":"5000",
     "carRental.rateIndicator":"D",
     "carRental.daysRented":"1",
     "carRental.locationCity":"San Francisco",
     "carRental.locationStateProvince":"CA",
     "carRental.locationCountry":"US",
     "carRental.rentalClassId":"0001",
     "carRental.returnDate":"20230102",
     "carRental.taxExemptIndicator":"Y",
     "carRental.fuelCharges":"2000",
     "carRental.insuranceCharges":"800",
     "carRental.noShowIndicator":"N",
     "carRental.oneWayDropOffCharges":"500"
  }
}
Capture request
{
   "merchantAccount":"YOUR_MERCHANT_ACCOUNT",
   "modificationAmount":{
      "currency":"USD",
      "value":20000
   },
   "originalReference":"NC6HT9CRT65ZGN82",
   "additionalData":{
      "carRental.rentalAgreementNumber":"123456789",
      "carRental.renterName":"Adyen Test",
      "carRental.returnCity":"San Francisco",
      "carRental.returnStateProvince":"CA",
      "carRental.returnCountry":"US",
      "carRental.returnLocationId":"AB1234",
      "carRental.checkOutDate":"20230101",
      "carRental.customerServiceTollFreeNumber":"8001010123",
      "carRental.rate":"5000",
      "carRental.rateIndicator":"D",
      "carRental.daysRented":"1",
      "carRental.locationCity":"San Francisco",
      "carRental.locationStateProvince":"CA",
      "carRental.locationCountry":"US",
      "carRental.rentalClassId":"0001",
      "carRental.returnDate":"20230102",
      "carRental.taxExemptIndicator":"Y",
      "carRental.fuelCharges":"2000",
      "carRental.insuranceCharges":"800",
      "carRental.noShowIndicator":"N",
      "carRental.oneWayDropOffCharges":"500"
   }
}