Skip to main content

Register TPP contact information

PUT 

https://psd2.eika.no/api/v1/tpps/:tppId/contact-information

Operation for registering email contact information for TPP. No PSU context is required. Note that only one address per TPP is supported, and each Third Party Provider should use an official, non-personal contact email. Personal emails are strongly discouraged due to:

  • GDPR Risks: Personal emails may violate data protection rules.
  • Responsibility Issues: Official emails ensure consistent communication, unaffected by individual circumstances.

Request

Responses

OK

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://psd2.eika.no/api/v1/tpps/:tppId/contact-information");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"email\": \"tpp.contact.email@tpp.example.com\"\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
— pathrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— headerrequired
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
— header
Body required
{
  "email": "tpp.contact.email@tpp.example.com"
}