Establish PSU-ID for PISP-only operation
GEThttps://psd2.snn.no/api/v1/users
Not part of the Berlin Group XS2A Framework Implementation Guidelines. Most relevant for non-AISP TPPs. Will return a scaRedirect for establishing a PSU-ID outside the scope of an account consent flow.
Request
Responses
- 200
- 400
- 401
- 404
- 500
OK
Bad Request
Unauthorized
Not Found
Internal Server Error
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://psd2.snn.no/v1/users");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());