Merchant-Initiated Sale for Mastercard Debt Recovery with Card Data {#mt-mc-mit-debtrecov-sale-intro}
=====================================================================================================

Use this information to process a merchant-initiated sale for debt recovery using card data.

Endpoint {#mt-mc-mit-debtrecov-sale-intro_d7e16}
------------------------------------------------

**Production:** `POST ``https://api.visaacceptance.com``/pts/v2/payments`{#mt-mc-mit-debtrecov-sale-intro_d7e25}  
**Test:** `POST ``https://apitest.visaacceptance.com``/pts/v2/payments`{#mt-mc-mit-debtrecov-sale-intro_d7e35}

Required Fields for a Merchant-Initiated Sale for Mastercard Debt Recovery with Card Data {#mt-mc-mit-debtrecov-sale-reqfields}
===============================================================================================================================

clientReferenceInformation.code
:

clientReferenceInformation.comments
:
Set this field to `TransitDA Debt recovery MIT sale`.

clientReferenceInformation.partner.solutionId
:
`Visa Acceptance Solutions` provides the value for this field.

clientReferenceInformation.partner.thirdPartyCertificationNumber
:
`Visa Acceptance Solutions` provides the value for this field.

clientReferenceInformation.transactionId
:

orderInformation.amountDetails.currency
:

orderInformation.amountDetails.totalAmount
:

paymentInformation.card.expirationMonth
:

paymentInformation.card.expirationYear
:

paymentInformation.card.number
:

paymentInformation.card.type
:

processingInformation.authorizationOptions.authIndicator
:
Set this field to `1`.

processingInformation.authorizationOptions.debtRecoveryIndicator
:
Set this field to `true`.

processingInformation.authorizationOptions.ignoreAvsResult
:
Set this field to `true`.

processingInformation.authorizationOptions.ignoreCvResult
:
Set this field to `true`.

processingInformation. authorizationOptions.partialAuthIndicator
:
Set this field to `false`.

processingInformation.authorizationOptions.transportationMode
:

processingInformation.capture
:
Set this field to `true`.

processingInformation.commerceIndicator
:
Set this field to `moto`.

processingInformation.industryDataType
:
Set this field to `transit`.

processingInformation.linkId
:
{#mt-mc-mit-debtrecov-sale-reqfields_dl_hy5_wxf_pdc}

REST Example: Merchant-Initiated Sale for Mastercard Debt Recovery with Card Data {#mt-mc-mit-debtrecov-sale-ex-rest}
=====================================================================================================================

Request

```
{
  "clientReferenceInformation": {
    "comments": "TransitDA Debt recovery MIT sale",
    "code": "12345678",
    "transactionId": "11111111",
    "partner": {
      "thirdPartyCertificationNumber": "Test1234",
      "solutionId": "Test1234"
    }
  },
  "processingInformation": {
    "linkId": "7781511099196451104806",
    "capture": "true",
    "commerceIndicator": "moto",
    "industryDataType": "transit",
    "authorizationOptions": {
      "authIndicator": "1",
      "debtRecoveryIndicator": true,
      "partialAuthIndicator": false,
      "ignoreAvsResult": true,
      "ignoreCvResult": true,
      "transportationMode": "00"
    }
  },
  "paymentInformation": {
    "card": {
      "number": "5454545454545454",
      "expirationMonth": "12",
      "expirationYear": "2030",
      "type": "002"
    }
  },
  "orderInformation": {
    "amountDetails": {
      "totalAmount": "3.00",
      "currency": "EUR"
    }
  }
}
```

Response to a Successful Request

```
{
  "_links": {
    "void": {
      "method": "POST",
      "href": "/pts/v2/payments/7799475532416439004807/voids"
    },
    "self": {
      "method": "GET",
      "href": "/pts/v2/payments/7799475532416439004807"
    }
  },
  "clientReferenceInformation": {
    "code": "12345678",
    "comments": "TransitDA Debt recovery MIT sale",
    "partner": {
      "solutionId": "Test1234"
    },
    "transactionId": "2309146064"
  },
  "id": "7799475532416439004807",
  "issuerInformation": {
    "clearingData": "6700040102F0F1"
  },
  "orderInformation": {
    "amountDetails": {
      "totalAmount": "3.00",
      "authorizedAmount": "3.00",
      "currency": "EUR"
    }
  },
  "paymentAccountInformation": {
    "card": {
      "type": "002"
    }
  },
  "paymentInformation": {
    "tokenizedCard": {
      "type": "002"
    },
    "card": {
      "type": "002"
    }
  },
  "processorInformation": {
    "systemTraceAuditNumber": "051520",
    "merchantNumber": "123456789012345",
    "approvalCode": "300664",
    "merchantAdvice": {
      "code": "01",
      "codeRaw": "M001"
    },
    "responseDetails": "ABC",
    "networkTransactionId": "0528MCC269181",
    "retrievalReferenceNumber": "614705051520",
    "consumerAuthenticationResponse": {
      "code": "2",
      "codeRaw": "2"
    },
    "transactionId": "0528MCC269181",
    "responseCode": "00",
    "avs": {
      "code": "1"
    }
  },
  "reconciliationId": "7799475532416439004807",
  "status": "AUTHORIZED",
  "submitTimeUtc": "2026-05-28T05:52:33Z"
}
```

