Send a single payment initiation request using € currency

Request "POST/paymentRequests", specific parameters : header

This call allows a request for payment initiation to be debited from the PAO account to credit the account of the service user to the bank account keeper (ASPSP) of a customer of a bank (PAO). payment (PSU) for which the Payment Service Provider (PISP) ​​is connected.

Initially, only the single payment initiation in € uro is accepted in our processing. In addition, the following information must be valued as follows in the request:

  • The serviceLevel data must be informed to SEPA
  • Currency data must be entered in EUR
  • The requestedExecutionDate data must be equal to or greater than today's date and no more than 30 days in the future
  • The request must contain a request for initiation for a single payment

When the request is submitted and if all the data is correctly formatted, a response (HTPP 201) will be returned to you.

This response will contain the Resource ID of the payment initiation, as well as the SCA Redirect authentication mode (initially, only this mode is available), the consent URL according to the payer's bank (urlconsent_approuval_URL ) and the replay.

No specific parameter is required for calling this service.

Example

Request :

POST/stet/psd2/v1/payment-request

Body :

{
"creationDateTime": "2019-03-13T12:56:11.122Z",
"numberOfTransactions": 1,
  "paymentInformationId": "123456789ABCD",
  "paymentTypeInformation": {
    "categoryPurpose": "CASH",
    "instructionPriority": "HIGH",
    "serviceLevel": "SEPA",
                "localInstrument": "INST"
  },
  "purpose": "ACCT",
  "beneficiary" : {
    "creditor": {
      "name": "John Doe",
      "postalAddress": {
        "addressLine": [
          "10 rue de la Rue","75001 Paris"
        ],
        "country": "FR"
      },
      "privateId": {
        "identification": "12345678900",
        "issuer": "FR",
        "schemeName": "SREN"
      }
    },
    "creditorAccount": {
      "iban": "FR7630002032531234567890168"
    },
    "creditorAgent": {
      "bicFi": "CRLYFRPPNIM"
    },
    "id": "string",
    "isTrusted": false
                },
    "debtor": {
    "name": "Janette Rees",
    "postalAddress": {
      "addressLine": [
        "12 rue de la DSP2","75006 Paris"
      ],
      "country": "FR"
    },
    "privateId": {
      "identification": "1447114700",
      "issuer": "FR",
      "schemeName": "COID"
    }
  },
  "debtorAccount": {
    "iban": "FR7617515001290029721519546"
  },
  "debtorAgent": {
    "bicFi": "CEPAFRPPXXX"
    },
    "initiatingParty": {
    "name": "Small Heath",
    "organisationId": {
      "identification": "00987654321",
      "issuer": "FR",
      "schemeName": "BANK"
    },
    "postalAddress": {
      "addressLine": [
        "92 rue de la Banque","75005 Paris"
      ],
      "country": "FR"
    }
  },
  "booking": false,
  "chargeBearer": "SLEV",
  "requestedExecutionDate": "2019-03-13T12:56:11.122Z",
  "creditTransferTransaction": [
    {
      "instructedAmount": {
        "amount": "100",
        "currency": "EUR"
      },
      "paymentId": {
        "endToEndId": "987654321DCBA",
        "instructionId": "DCBA987654321"
      },
      "regulatoryReportingCodes": [
        "string"
      ],
      "remittanceInformation": [
        "Life always finds a way"
      ]
                  }
  ],
  "supplementaryData": {
    "acceptedAuthenticationApproach": [
      "REDIRECT"
    ],
    "appliedAuthenticationApproach": "REDIRECT",
    "scaHint": "noScaExemption",
    "successfulReportUrl": "https://www.successful.fr",
    "unsuccessfulReportUrl": "https://www.unsuccessful.fr"
  }
}

 

Result

Status code : 201 

 {
  "appliedAuthenticationApproach": "REDIRECT",
  "_links": {
    "consentApproval": {
      "href": "TPPPISPurlConsentApproval/psuId.html?resourceId=0000000180-1551358254000131359238543&nonce=Id-2ed9775ce61639e9a3c94ecc",
      "templated": null
    }
  }
}