Skip to main content

Create periodic NDCT payment

POST 

https://psd2.eika.no/api/v1/periodic-payments/norwegian-domestic-credit-transfers

Creates a new periodic payment initiation request for one of the following products: See Bits PSD2 appendix for additional details.

Sample Request Body

  "instructedAmount": {
"amount": "100.23",
"currency": "NOK"
},
"creditorName": "Company 123",
"creditorAccount": {
"bban": "95360573002",
"iban": "NO0995360573002",
"currency": "NOK"
},
"creditorAddress": {
"street": "Street",
"buildingNumber": "56",
"postalCode": "7014",
"city": "Trondheim",
"country": "NO"
},
"debtorAccount": {
"bban": "95360573002",
"iban": "NO0995360573002",
"currency": "NOK"
},
"ultimateDebtor": "Company CBA",
"remittanceInformationUnstructured": "Kredittrente",
"startDate": "2018-06-07",
"executionRule": "preceeding",
"endDate": "2020-06-07",
"frequency": "Monthly",
"dayOfExecution": "12"
}

Request

Responses

CREATED

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://psd2.eika.no/api/v1/periodic-payments/norwegian-domestic-credit-transfers");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"instructedAmount\": {\n \"amount\": \"100.23\",\n \"currency\": \"NOK\"\n },\n \"creditorName\": \"Company 123\",\n \"creditorAccount\": {\n \"bban\": \"95360573002\",\n \"iban\": \"NO0995360573002\",\n \"currency\": \"NOK\"\n },\n \"creditorAddress\": {\n \"street\": \"Street\",\n \"buildingNumber\": \"56\",\n \"postalCode\": \"7014\",\n \"city\": \"Trondheim\",\n \"country\": \"NO\"\n },\n \"debtorAccount\": {\n \"bban\": \"95360573002\",\n \"iban\": \"NO0995360573002\",\n \"currency\": \"NOK\"\n },\n \"ultimateDebtor\": \"Company CBA\",\n \"remittanceInformationUnstructured\": \"Kredittrente\",\n \"purposeCode\": \"SALA\",\n \"startDate\": \"2018-06-07\",\n \"executionRule\": \"preceeding\",\n \"endDate\": \"2020-06-07\",\n \"frequency\": \"Monthly\",\n \"monthsOfExecution\": [\n 0\n ],\n \"dayOfExecution\": \"12\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://psd2.eika.no/api
Parameters
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
Body required
{
  "instructedAmount": {
    "amount": "100.23",
    "currency": "NOK"
  },
  "creditorName": "Company 123",
  "creditorAccount": {
    "bban": "95360573002",
    "iban": "NO0995360573002",
    "currency": "NOK"
  },
  "creditorAddress": {
    "street": "Street",
    "buildingNumber": "56",
    "postalCode": "7014",
    "city": "Trondheim",
    "country": "NO"
  },
  "debtorAccount": {
    "bban": "95360573002",
    "iban": "NO0995360573002",
    "currency": "NOK"
  },
  "ultimateDebtor": "Company CBA",
  "remittanceInformationUnstructured": "Kredittrente",
  "purposeCode": "SALA",
  "startDate": "2018-06-07",
  "executionRule": "preceeding",
  "endDate": "2020-06-07",
  "frequency": "Monthly",
  "monthsOfExecution": [
    0
  ],
  "dayOfExecution": "12"
}