# Merchant initiated payment

To create a merchant initiated transaction (MIT), create a transaction with a recurring object as indicated in the example below. 3DS authentication is not required.

# For PSPs using Automated integration (Intergiro 3DS service)

 
















POST /authorization/redirect
{
  "amount": 23.41,
  "currency": "EUR",
  "card": {
    "pan": "4111111111111111",
    "expires": [2, 22]
  },
  "recurring": { 
    "type": "subsequent",
    "reference": "<intergiro_initial_reference>" // Always required
  // If the initial transaction was not created with Intergiro, assign Scheme transaction ID. 
    "initiator": "merchant"
  },
  "target": "<callback_url>" // Only if Intergiro 3ds service is used
}

# For PSPs using External integration (PSPs own 3DS service)

 















POST /authorization
{
  "amount": 23.41,
  "currency": "EUR",
  "card": {
    "pan": "4111111111111111",
    "expires": [2, 22]
  },
  "recurring": { 
    "type": "subsequent",
    "reference": "<intergiro_initial_reference>" // Always required
  // If the initial transaction was not created with Intergiro, assign Scheme transaction ID. 
    "initiator": "merchant"
  }
}

Response:

 




























{
  "id": "<intergiro_tx_id>",
  "merchant": "<merchant_id>",
  "reference": "<initial_reference">,
  "created": "2021-04-01T09:00:00.000Z",
  "amount": 23.41,
  "currency": "EUR",
  "card": {
    "csc": "matched",
    "expires": [2, 24],
    "iin": "411111",
    "last4": "1111",
    "scheme": "visa",
    "type": "debit",
  },
  "recurring": { 
    "type": "subsequent",
    "reference": "<initial_reference>"
    "initiator": "merchant"
  },
  "history": [],
  "capture": [],
  "refund": [],
  "status": {
      "authorized": 23.41
  },
  "changed": "2023-02-20T12:25:02.134Z"
}